refactor(projects): 页面布局调整为rdms风格
This commit is contained in:
26
src/typings/api/system-manage.d.ts
vendored
26
src/typings/api/system-manage.d.ts
vendored
@@ -40,8 +40,8 @@ declare namespace Api {
|
||||
|
||||
type RoleSearchParams = CommonType.RecordNullable<Pick<Role, 'name' | 'code' | 'status'>> &
|
||||
PageParams & {
|
||||
createTime?: string[];
|
||||
};
|
||||
createTime?: string[];
|
||||
};
|
||||
|
||||
type SaveRoleParams = Pick<Role, 'name' | 'code' | 'sort' | 'status'> & {
|
||||
remark?: string | null;
|
||||
@@ -143,12 +143,12 @@ declare namespace Api {
|
||||
|
||||
type UserSearchParams = CommonType.RecordNullable<
|
||||
Pick<User, 'status'> &
|
||||
Pick<PageParams, 'pageNo' | 'pageSize'> & {
|
||||
username?: string;
|
||||
mobile?: string;
|
||||
deptId?: number;
|
||||
roleId?: number;
|
||||
}
|
||||
Pick<PageParams, 'pageNo' | 'pageSize'> & {
|
||||
username?: string;
|
||||
mobile?: string;
|
||||
deptId?: number;
|
||||
roleId?: number;
|
||||
}
|
||||
>;
|
||||
|
||||
type UserList = PageResult<User>;
|
||||
@@ -388,11 +388,11 @@ declare namespace Api {
|
||||
*/
|
||||
type UserManagementRelationQueryReqVO = CommonType.RecordNullable<
|
||||
Pick<UserManagementRelation, 'managerUserId' | 'subordinateUserId'> & {
|
||||
/** 是否来自带人关系的index组件 */
|
||||
fromUserIndex: boolean;
|
||||
/** 部门ID */
|
||||
deptId?: number | null;
|
||||
}
|
||||
/** 是否来自带人关系的index组件 */
|
||||
fromUserIndex: boolean;
|
||||
/** 部门ID */
|
||||
deptId?: number | null;
|
||||
}
|
||||
>;
|
||||
|
||||
/**
|
||||
|
||||
1
src/typings/components.d.ts
vendored
1
src/typings/components.d.ts
vendored
@@ -82,6 +82,7 @@ declare module 'vue' {
|
||||
IconCarbonPlay: typeof import('~icons/carbon/play')['default']
|
||||
IconCarbonStop: typeof import('~icons/carbon/stop')['default']
|
||||
'IconCharm:download': typeof import('~icons/charm/download')['default']
|
||||
'IconEp:arrowDown': typeof import('~icons/ep/arrow-down')['default']
|
||||
IconEpRemoveFilled: typeof import('~icons/ep/remove-filled')['default']
|
||||
IconEpSuccessFilled: typeof import('~icons/ep/success-filled')['default']
|
||||
'IconF7:circleFill': typeof import('~icons/f7/circle-fill')['default']
|
||||
|
||||
Reference in New Issue
Block a user