部门列表

This commit is contained in:
仲么了
2024-03-06 16:13:25 +08:00
parent cf70adb959
commit cb58426706
7 changed files with 433 additions and 15 deletions

16
src/api/user-boot/dept.ts Normal file
View File

@@ -0,0 +1,16 @@
import request from '@/utils/request'
export function getAreaTree(data: any) {
return request({
url: '/user-boot/dept/getAreaTree',
method: 'post',
params: data
})
}
export function getPidAreaByAreaId(data: any) {
return request({
url: '/user-boot/dept/getPidAreaByAreaId',
method: 'post',
params: data
})
}