fix(UserOperateDialog): 用户新增和编辑时的对话框里,昵称应该是必填项。

feat(User):搜索框组件新增按“所属公司”搜索;index组件新增“所属公司”字段;新增、编辑的对话框应该可以新增或修改“所属公司”。
This commit is contained in:
dk
2026-04-16 20:27:08 +08:00
parent b265d0d4f1
commit b4878845da
5 changed files with 84 additions and 31 deletions

View File

@@ -130,6 +130,7 @@ declare namespace Api {
deptName?: string | null;
positionId?: number | null;
positionName?: string | null;
company?: string | null;
email?: string | null;
mobile?: string | null;
sex?: UserGender | null;
@@ -148,6 +149,7 @@ declare namespace Api {
mobile?: string;
deptId?: number;
roleId?: number;
company?: string;
}
>;
@@ -158,6 +160,7 @@ declare namespace Api {
remark?: string | null;
positionId?: number | null;
resignedAt?: number | null;
company?: string | null;
email?: string | null;
mobile?: string | null;
sex?: UserGender | null;