From 0ed65d2b6b8dbfeaeda4720964ee5fbf3f42197e Mon Sep 17 00:00:00 2001 From: baoshiwei <baoshiwei@shlanbao.cn> Date: 星期一, 04 八月 2025 16:03:54 +0800 Subject: [PATCH] feat(bigScreen): 添加大屏故障页面并更新相关路由和权限- 在 pageEnum.ts 中添加 BIG_FAULT 路径 - 在 permissionGuard.ts 中添加 BIG_FAULT_PATH 到白名单路径列表 - 更新路由配置,将 BigFault组件指向新的 BigFault-tjt.vue 文件 - 新增 BigEqp-two.vue 组件,用于展示设备分割图像 --- src/api/sys/model/menuModel.ts | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/api/sys/model/menuModel.ts b/src/api/sys/model/menuModel.ts index 8d19eea..472c292 100644 --- a/src/api/sys/model/menuModel.ts +++ b/src/api/sys/model/menuModel.ts @@ -1,16 +1,16 @@ -import type { RouteMeta } from 'vue-router'; +import type { RouteMeta } from 'vue-router' export interface RouteItem { - path: string; - component: any; - meta: RouteMeta; - name?: string; - alias?: string | string[]; - redirect?: string; - caseSensitive?: boolean; - children?: RouteItem[]; + path: string + component: any + meta: RouteMeta + name?: string + alias?: string | string[] + redirect?: string + caseSensitive?: boolean + children?: RouteItem[] } /** * @description: Get menu return value */ -export type getMenuListResultModel = RouteItem[]; +export type getMenuListResultModel = RouteItem[] -- Gitblit v1.9.3