import Vue from 'vue' import Router from 'vue-router' // in development-env not use lazy-loading, because lazy-loading too many pages will cause webpack hot update too slow. so only in production use lazy-loading; // detail: https://panjiachen.github.io/vue-element-admin-site/#/lazy-loading Vue.use(Router) /* Layout */ import Layout from '../layout/Layout' import { systemRouters } from './modules/system' import { mapRouters } from './modules/marsMap' /** * hidden: true if `hidden:true` will not show in the sidebar(default is false) * alwaysShow: true if set true, will always show the root menu, whatever its child routes length * if not set alwaysShow, only more than one route under the children * it will becomes nested mode, otherwise not show the root menu * redirect: noredirect if `redirect:noredirect` will no redirect in the breadcrumb * name:'router-name' the name is used by <keep-alive> (must set!!!) * meta : { title: 'title' the name show in subMenu and breadcrumb (recommend set) icon: 'svg-name' the icon show in the sidebar breadcrumb: false if false, the item will hidden in breadcrumb(default is true) } **/ /** * 静态路由 */ export const constantRouterMap = [ {// 重定向 path: '/redirect', component: Layout, hidden: true, children: [ { path: '/redirect/:path*', component: () => import('@/views/redirect/index') } ] }, // 登录页面 { path: '/login', component: () => import('@/views/login/index'), hidden: true }, { path: '/applogin', component: () => import('@/views/login/appLogin'), hidden: true }, { path: '/appFaceLogin', component: () => import('@/views/login/appFaceLogin'), hidden: true }, { path: '/appIndex', component: () => import('@/views/dashboard/appIndex'), hidden: true, meta: { keepAlive: true }}, { path: '/appSubject', component: () => import('@/layout/LayoutApp'), hidden: true }, // 404错误页面 { path: '/404', component: () => import('@/views/errorPage/404'), hidden: true }, // 401 错误页面 { path: '/401', component: () => import('@/views/errorPage/401'), hidden: true }, // 主页 { path: '/', redirect: '/dashboard', name: 'Dashboard', hidden: true }, { path: '/full/highConsequence', name: 'HighConsequence', component: () => import('@/views/maps/highConsequenceArea'), meta: { title: '高后果区', icon: '' } }, { path: '/full/storageTopic', name: 'FullStorageTopic', component: () => import('@/views/maps/storageTopic'), meta: { title: '储备专题', icon: '' } }, { path: '/full/constructionThreat', name: 'FullConstructionThreat', component: () => import('@/views/maps/constructionThreat'), meta: { title: '第三方施工', icon: '' } }, { path: '/full/waterThreat', name: 'FullWaterThreat', component: () => import('@/views/maps/waterThreat'), meta: { title: '水保隐患', icon: '' } }, { path: '/full/sinkThreat', name: 'FullSinkThreat', component: () => import('@/views/maps/sinkThreat'), meta: { title: '塌陷专题', icon: '' } }, { path: '/full/vip', name: 'FullVip', component: () => import('@/views/maps/vip'), meta: { title: '重点用户', icon: '' } }, { path: '/full/weather', name: 'FullWeatherTopic', component: () => import('@/views/maps/weatherTopic'), meta: { title: '气象专题', icon: '' } }, { path: '/full/routeTopic', name: 'FullRouteTopic', component: () => import('@/views/maps/routeTopic'), meta: { title: '巡线专题', icon: '' } }, { path: '/full/supplyTopic', name: 'FullSupplyTopic', component: () => import('@/views/maps/supplyTopic'), meta: { title: '供应专题', icon: '' } }, { path: '/full/needTopic', name: 'FullNeedTopic', component: () => import('@/views/maps/needTopic'), meta: { title: '需求专题', icon: '' } }, { path: '/full/pipeOverview', name: 'FullPipeOverview', component: () => import('@/views/maps/pipeOverview'), meta: { title: '管网分布', icon: '' } }, { path: '/full/overview', name: 'FullOverview', component: () => import('@/views/maps/mapOverview'), meta: { title: '综合业务', icon: '' } }, { path: '/full/overview_no_button', name: 'FullOverviewNoButton', component: () => import('@/views/maps/mapOverview1'), meta: { title: '综合业务', icon: '' } }, { path: '/full/overview_new', name: 'FullOverviewNew', component: () => import('@/views/maps/mapOverview2'), meta: { title: '综合业务', icon: '' } }, { path: '/full/overview_new2', name: 'FullOverviewNew2', component: () => import('@/views/maps/mapOverview3'), meta: { title: '综合业务', icon: '' } }, // 九宫格 { path: '/dashboard', component: () => import('@/views/dashboard/index2'), hidden: true } ] export const createRouter = () => { return new Router({ routes: constantRouterMap }) } // 实例化vue的时候直挂载constantRouter export default new Router({ // mode: 'history', //后端支持可开 scrollBehavior: () => ({ y: 0 }), routes: constantRouterMap }) // 异步挂载路由 // 动态需要根据权限加载的路由表 export const asyncRouterMap = [ ...systemRouters, ...mapRouters, { path: '*', redirect: '/404', hidden: true, meta: {}} ]