Browse Source

no message

linwenxin 1 month ago
parent
commit
4607628496
4 changed files with 29 additions and 18 deletions
  1. 2 1
      src/layout/components/Navbar.vue
  2. 25 10
      src/permission.js
  3. 1 2
      src/store/getters.js
  4. 1 5
      src/store/modules/user.js

+ 2 - 1
src/layout/components/Navbar.vue

@@ -369,7 +369,7 @@ export default {
     noticeVisible() {
       return this.noticeCount > 0
     },
-    ...mapGetters(['sidebar', 'avatar', 'device', 'name', 'isNotice', 'showBigData', 'userid']),
+    ...mapGetters(['sidebar', 'avatar', 'device', 'name', 'isNotice', 'userid']),
     filterTime() {
       if (this.dateType === '') {
         return ['', '']
@@ -460,6 +460,7 @@ export default {
     }
   },
   created() {
+    console.log(global.antRouter)
     clearInterval(this.timer)
     this.getUserInfo()
     this.redDot()

+ 25 - 10
src/permission.js

@@ -70,7 +70,6 @@ router.beforeEach(async (to, from, next) => {
           lay.children = []
           for (var route of store.getters.menus) {
             if (route.code == 'bigViews') {
-              store.commit('SET_SHOW_BIG_DATS', true)
               router.addRoutes([
                 {
                   path: '/bigViews',
@@ -80,6 +79,16 @@ router.beforeEach(async (to, from, next) => {
                   hidden: true
                 }
               ])
+            } else if (route.code == 'bigViews2') {
+              router.addRoutes([
+                {
+                  path: '/bigViews2',
+                  code: 'bigViews2',
+                  name: 'bigViews2',
+                  component: _import(`${route.fullUrl}/index`),
+                  hidden: true
+                }
+              ])
             } else if (route.code == 'networkSigning') {
               router.addRoutes([
                 {
@@ -106,16 +115,22 @@ router.beforeEach(async (to, from, next) => {
                 component: _import(`${route.fullUrl}/index`),
                 hidden: true
               })
+            } else if (route.code == 'bigViews2') {
+              global.antRouter.push({
+                path: '/bigViews2',
+                code: 'bigViews2',
+                name: 'bigViews2',
+                component: _import(`${route.fullUrl}/index`),
+                hidden: true
+              })
             } else if (route.code == 'networkSigning') {
-              global.antRouter.push([
-                {
-                  path: '/networkSigning',
-                  code: 'networkSigning',
-                  name: 'networkSigning',
-                  component: _import(`${route.fullUrl}/index`),
-                  hidden: true
-                }
-              ])
+              global.antRouter.push({
+                path: '/networkSigning',
+                code: 'networkSigning',
+                name: 'networkSigning',
+                component: _import(`${route.fullUrl}/index`),
+                hidden: true
+              })
             } else if (moduleObj[route.code] !== false && route.status) {
               global.antRouter.push(...buildRoute(route, '', false))
             }

+ 1 - 2
src/store/getters.js

@@ -29,7 +29,6 @@ const getters = {
   isSettlementGroup: state => state.user.isSettlementGroup,
   roleList: state => state.user.roleList,
   websitId: state => state.user.websitId,
-  greemall_user: state => state.user.greemall_user,
-  showBigData: state => state.user.showBigData
+  greemall_user: state => state.user.greemall_user
 }
 export default getters

+ 1 - 5
src/store/modules/user.js

@@ -37,8 +37,7 @@ const getDefaultState = () => {
     isSettlementGroup: false,
     roleList: [],
     websitId: null,
-    greemall_user: null,
-    showBigData: false
+    greemall_user: null
   }
 }
 
@@ -157,9 +156,6 @@ const mutations = {
   },
   SET_WEBSIT_ID: (state, websitId) => {
     state.websitId = websitId
-  },
-  SET_SHOW_BIG_DATS: (state, bool) => {
-    state.showBigData = bool
   }
 }