refactor: 个人中心页面重构和布局代码优化

This commit is contained in:
Ray.Hao
2026-06-21 14:09:27 +08:00
parent 7ffcf8820e
commit 845d117f08
68 changed files with 4026 additions and 3418 deletions

3
types/router.d.ts vendored
View File

@@ -6,6 +6,7 @@ declare module "vue-router" {
*/
interface RouteMeta {
title?: string;
type?: string;
icon?: string;
hidden?: boolean;
alwaysShow?: boolean;
@@ -14,6 +15,8 @@ declare module "vue-router" {
breadcrumb?: boolean;
activeMenu?: string;
params?: Record<string, unknown>;
externalUrl?: string;
openMode?: number;
roles?: string[];
}
}