完成 监测点报告 迁移

This commit is contained in:
GGJ
2024-02-29 11:13:07 +08:00
parent d9a5a7c9d7
commit 1e36102c5d
5 changed files with 254 additions and 13 deletions

View File

@@ -31,4 +31,12 @@ export function selectReleation(data) {
method: "post",
params:data
});
}
export function getLineExport(data) {
return createAxios({
url: "/event-boot/report/getLineExport",
method: "post",
data: data,
responseType: 'blob',
});
}

View File

@@ -23,4 +23,10 @@ export function delMenu(id: string) {
method: 'delete'
})
}
export function getTheme() {
return createAxios({
url: '/system-boot/theme/getTheme',
method: 'get'
})
}