From 988c8af35cdc8e824b6a47a0f519652b6ad7ea65 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Mon, 30 Dec 2024 13:44:06 +0800
Subject: [PATCH] 高度异常处理
---
src/router/index.js | 42 ++++++++++++++++++++++++++----------------
1 files changed, 26 insertions(+), 16 deletions(-)
diff --git a/src/router/index.js b/src/router/index.js
index d25382c..b10d9ed 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -2,7 +2,7 @@
* @Author: shuishen 1109946754@qq.com
* @Date: 2024-10-25 16:35:31
* @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2024-12-02 17:23:21
+ * @LastEditTime: 2024-12-24 16:57:10
* @FilePath: \bigScreen\src\router\index.js
* @Description:
*
@@ -22,13 +22,23 @@
// redirect: '/layout',
// },
{
- path: '',
+ path: '/',
redirect: '/layout',
},
{
path: '/login',
name: '登录页',
component: () => import('@/pages/login.vue'),
+ meta: {
+ keepAlive: true,
+ isTab: false,
+ isAuth: false,
+ },
+ },
+ {
+ path: '/sign',
+ name: '免登录',
+ component: () => import('@/pages/sign.vue'),
meta: {
keepAlive: true,
isTab: false,
@@ -79,13 +89,13 @@
},
component: () => import('@/views/pac/index.vue')
},
- {
- path: 'pd',
- meta: {
- title: '突发事件模拟'
- },
- component: () => import('@/views/pd/index.vue')
- },
+ // {
+ // path: 'pd',
+ // meta: {
+ // title: '突发事件模拟'
+ // },
+ // component: () => import('@/views/pd/index.vue')
+ // },
]
},
@@ -125,13 +135,13 @@
},
component: () => import('@/views/rt/index.vue')
},
- {
- path: 'ochart',
- meta: {
- title: '作战图'
- },
- component: () => import('@/views/ochart/index.vue')
- },
+ // {
+ // path: 'ochart',
+ // meta: {
+ // title: '作战图'
+ // },
+ // component: () => import('@/views/ochart/index.vue')
+ // },
]
},
]
--
Gitblit v1.9.3