修改上级部门(选择项排除本身和下级)

This commit is contained in:
RuoYi
2020-05-16 18:39:30 +08:00
parent 8c7aca2527
commit 9f4918cc14
3 changed files with 38 additions and 9 deletions

View File

@ -9,6 +9,14 @@ export function listDept(query) {
})
}
// 查询部门列表(排除节点)
export function listDeptExcludeChild(deptId) {
return request({
url: '/system/dept/list/exclude/' + deptId,
method: 'get'
})
}
// 查询部门详细
export function getDept(deptId) {
return request({