refactor: 页面布局样式优化和接口合理性优化

Former-commit-id: 4af1b0aa5aca3569f540e3bcad99f6e14741e855
This commit is contained in:
horizons
2022-10-27 01:45:31 +08:00
parent 2fb3839594
commit c783b5420e
11 changed files with 389 additions and 603 deletions

View File

@@ -88,10 +88,6 @@ export interface Resource {
* 子菜单
*/
children: Resource[];
/**
* 权限集合
*/
perms: Permission[];
}
/**

View File

@@ -4,7 +4,7 @@ import { PageQueryParam, PageResult } from './base';
* 角色查询参数类型
*/
export interface RoleQueryParam extends PageQueryParam {
name?: string;
keywords?: string;
}
/**

View File

@@ -78,7 +78,7 @@ export interface UserFormData {
/**
* 用户导入表单类型声明
*/
export interface UserImportFormData {
export interface UserImportData {
deptId: number;
roleIds: number[];
}