This commit is contained in:
仲么了
2024-02-29 16:29:37 +08:00
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'
})
}