From 416eb6356e6fca5d633597bba18958ae664ad6c6 Mon Sep 17 00:00:00 2001
From: quanyawei <401863037@qq.com>
Date: Fri, 15 Mar 2024 17:20:21 +0800
Subject: [PATCH] fix: 走航报告下载修改
---
src/router/dynamicRouter.js | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/src/router/dynamicRouter.js b/src/router/dynamicRouter.js
index b84d58a..d794134 100644
--- a/src/router/dynamicRouter.js
+++ b/src/router/dynamicRouter.js
@@ -107,6 +107,12 @@
component: () => import('@/views/govReport/index'),
meta: { title: '���������������������������', icon: 'example' }
}
+const hand = {
+ path: 'report/hand',
+ name: 'hand',
+ component: () => import('@/views/hand/index'),
+ meta: { title: '������������', icon: 'example' }
+}
// ������������������������
const airQualityReportDisplay = {
path: 'report/airQualityReportDisplay',
@@ -160,6 +166,12 @@
name: 'levelStatistic',
component: () => import('@/views/levelStatistic/index'),
meta: { title: '���������������������', icon: 'example' }
+}
+const onlineRate = {
+ path: 'analyse/onlineRate',
+ name: 'onlineRate',
+ component: () => import('@/views/onlineRate/index'),
+ meta: { title: '������������', icon: 'example' }
}
const industryContributionRate = {
@@ -234,8 +246,10 @@
showMpData: showMpData,
staffManagement: staffManagement,
showGovHourData: showGovHourData,
+ hand: hand,
cityAirRank: cityAirRank,
levelStatistic: levelStatistic,
+ onlineRate: onlineRate,
heatmap: heatmap,
hexagon: hexagon,
airPollutionCalendar: airPollutionCalendar,
@@ -269,6 +283,7 @@
// ������������������
export function routerMenus() {
+ console.log('user.menus', JSON.parse(store.state.user.menus))
const routersMenu = JSON.parse(store.state.user.menus)
// ��������������������������������� ���������������������������
console.log('routersMenu', routersMenu)
--
Gitblit v1.8.0