From 9c3050a2b8e140f91c830cfafd1f5300f4b5dd72 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Mon, 16 Dec 2024 19:40:06 +0800
Subject: [PATCH] 新干路由配置调整、作战图显示调整
---
src/router/index.js | 23 +++++++++++++++++++----
1 files changed, 19 insertions(+), 4 deletions(-)
diff --git a/src/router/index.js b/src/router/index.js
index b9a477d..ccb919d 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-10 16:46:59
+ * @LastEditTime: 2024-12-16 19:19:09
* @FilePath: \bigScreen\src\router\index.js
* @Description:
*
@@ -22,8 +22,8 @@
// redirect: '/layout',
// },
{
- path: '',
- redirect: '/layout',
+ path: '/',
+ redirect: '/layout/map/main/space',
},
{
path: '/login',
@@ -75,7 +75,22 @@
]
},
]
- }
+ },
+ {
+ path: 'single',
+ name: 'single',
+ component: singleLayout,
+ children: [
+ {
+ path: 'ochart',
+ meta: {
+ title: '作战图'
+ },
+ component: () => import('@/views/ochart/index.vue')
+ },
+ ]
+ },
+
]
},
]
--
Gitblit v1.9.3