|
@@ -1,17 +1,15 @@
|
|
|
import {createRouter, createWebHistory} from 'vue-router'
|
|
|
import LayoutCom from '@/layout/index.vue'
|
|
|
+import GisLayoutCom from '@/views/gis/layout/index.vue'
|
|
|
import staticRouter from './modules/static'
|
|
|
import store from '@/store/index'
|
|
|
import TempCom from '@/views/global/temp.vue'
|
|
|
import RouterViewCom from "@/layout/router-view.vue";
|
|
|
-// import {stagingRouterMap, stagingRouter} from './modules/staging'
|
|
|
-// import {systemRouterMap, systemRouter} from './modules/system'
|
|
|
+import {gisRouter} from './modules/gis'
|
|
|
import {ElMessage} from "element-plus";
|
|
|
import {toLogin} from "@/utils/permissions";
|
|
|
|
|
|
export const RoutersMap: any = new Map([
|
|
|
- // ...stagingRouterMap,
|
|
|
- // ...systemRouterMap,
|
|
|
])
|
|
|
|
|
|
const routes = [
|
|
@@ -23,6 +21,14 @@ const routes = [
|
|
|
children: [
|
|
|
]
|
|
|
},
|
|
|
+ {
|
|
|
+ path: '/gis',
|
|
|
+ name: store.state.gis.menuRootName, // 菜单根路由name标识
|
|
|
+ component: GisLayoutCom,
|
|
|
+ children: [
|
|
|
+ ...gisRouter
|
|
|
+ ]
|
|
|
+ },
|
|
|
{ path: '/:pathMatch(.*)*', name: 'NotFound', component: TempCom }
|
|
|
]
|
|
|
|
|
@@ -67,6 +73,8 @@ const getInit = (to: any, next: any) => {
|
|
|
path: firstRoute.redirect || firstRoute.path
|
|
|
})
|
|
|
}
|
|
|
+ } else if (to.path === '/gis') {
|
|
|
+ next({path: '/gis/' + gisRouter[0].path})
|
|
|
} else {
|
|
|
const m = to.matched[1]?.children?.map((v: any) => {
|
|
|
v.expend = v.children?.some((s: any) => s.path === to.path)
|