应急管理厅专家管理系统
祖安之光
2026-06-08 7455113900364c295831f5ebaaeb0db0c98492e0
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
  })