修改 ui 包结构.

This commit is contained in:
lijiahang
2023-07-29 13:11:19 +08:00
parent 900cd1c1d7
commit 5bee3b98a7
28 changed files with 149 additions and 365 deletions

View File

@@ -2,15 +2,21 @@ import 'vue-router';
declare module 'vue-router' {
interface RouteMeta {
permission?: string;
requiresAuth: boolean;
// 后端赋值
icon?: string;
// 后端赋值
locale?: string;
hideInMenu?: boolean;
hideChildrenInMenu?: boolean;
activeMenu?: string;
// 后端赋值
order?: number;
// 后端赋值 是否隐藏菜单
hideInMenu?: boolean;
// 后端赋值 是否隐藏子菜单
hideChildrenInMenu?: boolean;
// 后端赋值 是否添加到 tab
noAffix?: boolean;
// 前端赋值 是否忽略缓存
ignoreCache?: boolean;
// 不赋值
activeMenu?: string;
}
}