From 3d47b03fb107e73f96b631c98ba1e275576da064 Mon Sep 17 00:00:00 2001
From: quanyawei <401863037@qq.com>
Date: Wed, 25 Oct 2023 17:01:07 +0800
Subject: [PATCH] fix:实时风场图点击弹窗修改
---
src/router/dynamicRouter.js | 26 ++++++++++++++++++++++++--
1 files changed, 24 insertions(+), 2 deletions(-)
diff --git a/src/router/dynamicRouter.js b/src/router/dynamicRouter.js
index 1246779..5358aeb 100644
--- a/src/router/dynamicRouter.js
+++ b/src/router/dynamicRouter.js
@@ -196,7 +196,25 @@
component: () => import('@/views/dailyreport/index'),
meta: { title: '������������������', icon: 'example' }
}
-
+// ������������
+const summaryPage = {
+ path: 'toCarryOutLegislativeReforms/summaryPage',
+ name: 'summaryPage',
+ component: () => import('@/views/toCarryOutLegislativeReforms/summaryPage/index'),
+ meta: { title: '������������', icon: 'example' }
+}
+const reform = {
+ path: 'toCarryOutLegislativeReforms/reform',
+ name: 'reform',
+ component: () => import('@/views/toCarryOutLegislativeReforms/reform/index'),
+ meta: { title: '������������', icon: 'example' }
+}
+const delay = {
+ path: 'toCarryOutLegislativeReforms/delay',
+ name: 'delay',
+ component: () => import('@/views/toCarryOutLegislativeReforms/delay/index'),
+ meta: { title: '������������', icon: 'example' }
+}
// ���������������������������
const ruleMapping = {
@@ -226,6 +244,9 @@
dailyreport,
sectionReport,
Listdata,
+ summaryPage,
+ reform,
+ delay
// Equidata
}
@@ -242,6 +263,7 @@
export function routerMenus() {
const routersMenu = JSON.parse(store.state.user.menus)
// ��������������������������������� ���������������������������
+ console.log('routersMenu',routersMenu)
const currentRoutes = router.options.routes
if (routersMenu.length > 0) {
routersMenu.forEach(item => {
@@ -263,7 +285,7 @@
if (temp !== undefined) {
currentRoutes[currentRoutes.length - 1].children.push(temp)
} else {
- console.log('������������������������������������������������������������')
+ console.log('������������������������������������������������������������1')
}
})
} else {
--
Gitblit v1.8.0