马宇豪
2024-11-21 cc3e08bda13360c88b7189e8f8d043b60783c7fb
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
  })