update 优化 新增编辑用户 过滤禁用的部门

This commit is contained in:
疯狂的狮子Li
2024-12-11 15:30:44 +08:00
parent 84888c3c28
commit 7a9ccedadc
3 changed files with 39 additions and 12 deletions

View File

@ -28,6 +28,18 @@ export interface DeptVO extends BaseEntity {
menuId: string | number;
}
/**
* 部门类型
*/
export interface DeptTreeVO extends BaseEntity {
id: number | string;
label: string;
parentId: number | string;
weight: number;
children: DeptTreeVO[];
disabled: boolean;
}
/**
* 部门表单类型
*/