fix: element-plus版本升级问题调整

Former-commit-id: 74a0b83abe42f3ace71c23b5091a5dc7cf487213
This commit is contained in:
郝先瑞
2022-04-19 01:04:31 +08:00
parent 02b64fa351
commit 20cfce9532
9 changed files with 75 additions and 76 deletions

View File

@@ -2,7 +2,7 @@
/**
* 部门查询参数类型声明
*/
export interface DeptQueryParam {
export interface DeptQueryParam {
name: string | undefined,
status: number | undefined
}
@@ -12,9 +12,9 @@ export interface DeptQueryParam {
*/
export interface DeptItem {
id: number;
id: string;
name: string;
parentId: number;
parentId: string;
treePath: string;
sort: number;
status: number;
@@ -28,8 +28,8 @@ export interface DeptItem {
* 部门表单类型声明
*/
export interface DeptFormData {
id: number|undefined,
parentId: number,
id?: string,
parentId: string,
name: string,
sort: number,
status: number

View File

@@ -30,11 +30,11 @@ export interface MenuFormData {
/**
* 菜单ID
*/
id: number | undefined,
id: string ,
/**
* 父菜单ID
*/
parentId: number,
parentId: string,
/**
* 菜单名称
*/