src/api/system/dept.js
@@ -9,6 +9,15 @@ }) } // 查询部门列表 export function listOutDept(query) { return request({ url: '/system/dept/getOutDeptList', method: 'get', params: query }) } // 查询部门列表(排除节点) export function listDeptExcludeChild(deptId) { return request({ @@ -28,7 +37,7 @@ // 新增部门 export function addDept(data) { return request({ url: '/system/dept', url: '/system/dept/add', method: 'post', data: data })