部门编辑

This commit is contained in:
仲么了
2024-03-11 09:39:44 +08:00
parent 7b7b816e55
commit 2eb2a28b1f
2 changed files with 22 additions and 6 deletions

View File

@@ -14,3 +14,18 @@ export function getPidAreaByAreaId(data: any) {
params: data
})
}
export function addDept(data: any) {
return request({
url: '/user-boot/dept/add',
method: 'post',
data: data
})
}
export function updateDept(data: any) {
return request({
url: '/user-boot/dept/update',
method: 'post',
data: data
})
}