Files
admin-govern/src/api/common.ts

26 lines
507 B
TypeScript
Raw Normal View History

2023-12-27 16:36:10 +08:00
import createAxios from '@/utils/request'
// 用户名列表
export function saveLogParam() {
return createAxios({
url: '/system-boot/audit/saveLogParam',
2023-12-29 10:05:09 +08:00
method: 'POST'
})
}
// 区域列表
export function getAreaList() {
return createAxios({
url: '/user-boot/dept/deptTree',
method: 'POST'
2023-12-27 16:36:10 +08:00
})
}
2024-01-09 13:49:21 +08:00
// 设备列表
export function getDeviceTree() {
return createAxios({
url: '/cs-device-boot/csLedger/deviceTree',
method: 'POST'
})
}