From 50bf2b134dff8f56d72e4ffe934540d8b1b2f519 Mon Sep 17 00:00:00 2001
From: quanyawei <401863037@qq.com>
Date: Fri, 01 Mar 2024 09:57:28 +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