From bd11d32a4e0fab6e4e6c4a32d5e7e3fe26abb271 Mon Sep 17 00:00:00 2001 From: baoshiwei <baoshiwei@shlanbao.cn> Date: 星期五, 06 十二月 2024 16:15:11 +0800 Subject: [PATCH] 完成设备大屏,新增报警大屏 --- src/router/routes/index.ts | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 52 insertions(+), 1 deletions(-) diff --git a/src/router/routes/index.ts b/src/router/routes/index.ts index b31d73a..3d24577 100644 --- a/src/router/routes/index.ts +++ b/src/router/routes/index.ts @@ -39,6 +39,57 @@ }, } +export const BigScreen: AppRouteRecordRaw = { + path: '/bigScreen', + name: 'BigScreen', + component: () => import('/@/views/dry/bigScreen/BigWorkShop.vue'), + meta: { + title: t('big.screen.workshop'), + }, +} +export const BigScreenN: AppRouteRecordRaw = { + path: '/bigScreenN', + name: 'BigScreenN', + component: () => import('/@/views/dry/bigScreen/BigWorkShop2.vue'), + meta: { + title: t('big.screen.workshopn'), + }, +} +export const BigEqp: AppRouteRecordRaw = { + path: '/bigEqp', + name: 'BigEqp', + component: () => import('/@/views/dry/bigScreen/BigEqp.vue'), + meta: { + title: t('big.screen.eqp'), + }, +} +export const BigEqpCloud: AppRouteRecordRaw = { + path: '/bigEqpCloud', + name: 'BigEqpCloud', + component: () => import('/@/views/dry/bigScreen/BigEqpCloud.vue'), + meta: { + title: t('big.screen.eqpCloud'), + }, +} + +export const BigFaultCloud: AppRouteRecordRaw = { + path: '/bigFaultCloud', + name: 'BigFaultCloud', + component: () => import('/@/views/dry/bigScreen/BigFaultCloud.vue'), + meta: { + title: t('big.screen.faultCloud'), + }, +} + +export const BigFault: AppRouteRecordRaw = { + path: '/bigFault', + name: 'BigFault', + component: () => import('/@/views/dry/bigScreen/BigFault.vue'), + meta: { + title: t('big.screen.fault'), + }, +} + //update-begin---author:wangshuai ---date:20220629 for锛歛uth2鐧诲綍椤甸潰璺敱------------ export const Oauth2LoginRoute: AppRouteRecordRaw = { path: '/oauth2-app/login', @@ -66,4 +117,4 @@ } // Basic routing without permission -export const basicRoutes = [LoginRoute, RootRoute, ...mainOutRoutes, REDIRECT_ROUTE, PAGE_NOT_FOUND_ROUTE, TokenLoginRoute, Oauth2LoginRoute] +export const basicRoutes = [LoginRoute, RootRoute, ...mainOutRoutes, REDIRECT_ROUTE, PAGE_NOT_FOUND_ROUTE, TokenLoginRoute, Oauth2LoginRoute,BigScreen,BigScreenN,BigEqp,BigEqpCloud,BigFaultCloud,BigFault] -- Gitblit v1.9.3