|
@@ -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))
|
|
|
}
|