first
This commit is contained in:
23
src/api/modules/map.ts
Normal file
23
src/api/modules/map.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import {
|
||||
SYSTEM_PORT,
|
||||
DOMAIN_PORT,
|
||||
|
||||
} from "@/api/config/servicePort";
|
||||
|
||||
import { Download, ResultData, ResPage, Task } from "@/api/interface/index";
|
||||
|
||||
import http from "@/api";
|
||||
|
||||
/**
|
||||
* @name 表格模板下载
|
||||
*/
|
||||
export const dTemPlatDownLoad = (params: Download.ResFileUrl) => {
|
||||
return http.get<ResPage<ResultData>>(`/admin/domain/resource/template/download`, params);
|
||||
};
|
||||
|
||||
/**
|
||||
* @name 异步任务执行进度消息
|
||||
*/
|
||||
export const manageCheck = (params: Task.ResFileUrl) => {
|
||||
return http.get<ResPage<ResultData>>(`/admin/system/msg/task/list`, params, { noLoading: true });
|
||||
};
|
||||
Reference in New Issue
Block a user