1
2
3
4
5
6
7
8
9
10
11
12
13
| import http from "../http";
|
| //登录记录
| export const GetLogin = (data) => http.post(`/api/Loginhsy/LoginRecord`, data);
|
| //任务记录批量导出
| export const ExportApi = (data) => http.download("/api/MaintenanceTeam/Export", data, "检修设置记录.xlsx", "加载中");
| //作业记录批量导出
| export const ExportApi2 = (data) => http.download("/api/Maintenance/Export", data, "检修操作记录.xlsx", "加载中");
| //登录记录批量导出
| export const ExportApi3 = (data) => http.download("/api/Loginhsy/Export", data, "登录记录数据.xlsx", "加载中");
| //单位批量导出
| export const ExportApi4 = (data)=> http.download("/api/UnitCategory/Export",data,"单位批量导出.xlsx","加载中")
|
|