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

18 lines
347 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
})
}