From f90ee55e6d63cd02c2b883bd5bd942c487fce56a Mon Sep 17 00:00:00 2001 From: Your Name <123456> Date: 星期六, 20 八月 2022 16:51:33 +0800 Subject: [PATCH] 修改bug --- src/router/route.ts | 38 +++++++++++++++++++++++++++++++++++--- 1 files changed, 35 insertions(+), 3 deletions(-) diff --git a/src/router/route.ts b/src/router/route.ts index 699646d..5ee3c9e 100644 --- a/src/router/route.ts +++ b/src/router/route.ts @@ -72,12 +72,44 @@ } }, { - path: '/homeMenu', - name: 'homeMenu', - component: () => import('/@/views/homeMenu/homeMenu.vue'), + path: '/newMenu', + name: 'newMenu', + component: () => import('/@/views/newHome/index.vue'), meta: { title: '首页', isKeepAlive: false } + }, + { + path: '/intelligentMap', + name: 'intelligentMap', + component: () => import('/@/views/intellectInspect/intelligentMap/index.vue'), + meta: { + title: '巡检路线' + } + }, + { + path: '/intelligentLine', + name: 'intelligentMap', + component: () => import('/@/views/intellectInspect/intelligentLine/index.vue'), + meta: { + title: '巡检路线' + } + }, + { + path: '/dpIndex', + name: 'dpIndex', + component: () => import('/@/views/doublePrevent/dpIndex/index.vue'), + meta: { + title: '双重预防首页' + } + }, + { + path: '/warningScreen', + name: 'warningScreen', + component: () => import('/@/views/riskWarningSys/warningBigScreen/index.vue'), + meta: { + title: '预警预报' + } } ]; -- Gitblit v1.9.2