// 部门类别 export const DeptTypeList = [ { name: '公司/单位', value: '03' }, { name: '部门/组', value: '04' }, ] // 部门信息,下拉树用 export interface DeptTreeNode { id: string name: string pid: string version: string num: number tips: string deptType: string children?: [] } // 部门信息,列表用 export interface DeptInfo { id: string simpleName: string fullName: string pid: string version: string num: number deptType: string tips: string children?: [] }