应急管理厅专家管理系统
zhouwx
2026-04-15 35aa4327ca39edc7478bea0f17a003b7ffa24d02
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
  })