部门删除

This commit is contained in:
仲么了
2024-03-11 09:55:42 +08:00
parent 2eb2a28b1f
commit ba241ab437
2 changed files with 39 additions and 9 deletions

View File

@@ -29,3 +29,19 @@ export function updateDept(data: any) {
data: data
})
}
export function deleteDept(data:any) {
return request({
url: '/user-boot/dept/delete',
method: 'post',
data: data
})
}
export function selectPid(data:any) {
return request({
url: '/user-boot/dept/selectPid',
method: 'post',
data: data
})
}