|
@@ -6,7 +6,8 @@ const hgxfxApi = {
|
|
|
GetPage: '/apply/hgxfx/GetPage',
|
|
|
GetScx: '/apply/hgxfx/GetScxList',
|
|
|
UpdateScx: '/apply/hgxfx/UpdateScx',
|
|
|
- ShapeUpload:'/file/uploadShpZip'
|
|
|
+ ShapeUpload:'/file/uploadShpZip',
|
|
|
+ GetLog: '/apply/hgxfx/GetLog',
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -24,6 +25,21 @@ export function ShapeUpload(parameter) {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
+/**
|
|
|
+ * 根据任务编号查询任务
|
|
|
+ * @param parameter
|
|
|
+ * @returns {*}
|
|
|
+ */
|
|
|
+export function GetLog(parameter) {
|
|
|
+ return request({
|
|
|
+ method: 'get',
|
|
|
+ url: hgxfxApi.GetLog,
|
|
|
+ params: parameter,
|
|
|
+ headers: {
|
|
|
+ 'Content-Type': 'application/json;charset=UTF-8'
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
/**
|
|
|
* 登录
|
|
|
* @param parameter
|