import Vue from 'vue' import Router from 'vue-router' Vue.use(Router) /* Layout */ import Layout from '@/layout' /** * Note: sub-menu only appear when route children.length >= 1 * Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html * * hidden: true if set true, item will not show in the sidebar(default is false) * alwaysShow: true if set true, will always show the root menu * if not set alwaysShow, when item has more than one children route, * it will becomes nested mode, otherwise not show the root menu * redirect: noRedirect if set noRedirect will no redirect in the breadcrumb * name:'router-name' the name is used by (must set!!!) * meta : { roles: ['admin','editor'] control the page roles (you can set multiple roles) title: 'title' the name show in sidebar and breadcrumb (recommend set) icon: 'svg-name'/'el-icon-x' the icon show in the sidebar breadcrumb: false if set false, the item will hidden in breadcrumb(default is true) activeMenu: '/example/list' if set path, the sidebar will highlight the path you set } */ /** * 静态路由(constantRoutes): 菜单内容是前端写死 动态路由: 菜单内容是动态获取 */ export const constantRoutes = [ { path: '/login', component: () => import('@/views/login/index'), hidden: true }, { path: '/404', component: () => import('@/views/404'), hidden: true }, { path: '/', component: Layout, redirect: '/dashboard', children: [{ path: 'dashboard', name: 'Dashboard', component: () => import('@/views/dashboard/index'), meta: { title: '首页', icon: 'dashboard', affix: true } }] }, { path: '/audio', component: Layout, children: [ { path: 'index', name: 'Audio', component: () => import('@/views/audio/index'), meta: { title: '录音管理', icon: 'el-icon-microphone' } } ] }, { path: '/video', component: Layout, children: [ { path: 'index', name: 'Video', component: () => import('@/views/video/index'), meta: { title: '视频管理', icon: 'el-icon-video-camera' } } ] }, { path: '/sales', component: Layout, children: [ { path: 'index', name: 'Sales', component: () => import('@/views/sales/index'), meta: { title: '销售管理', icon: 'el-icon-s-custom' } } ] }, { path: '/project', component: Layout, children: [ { path: 'index', name: 'Project', component: () => import('@/views/project/index'), meta: { title: '项目管理', icon: 'el-icon-s-cooperation' } } ] }, { path: '/dealership', component: Layout, children: [ { path: 'index', name: 'Dealership', component: () => import('@/views/dealership/index'), meta: { title: '经销商管理', icon: 'el-icon-s-shop' } } ] }, { path: '/device', component: Layout, children: [ { path: 'index', name: 'Device', component: () => import('@/views/device/index'), meta: { title: '设备管理', icon: 'el-icon-mobile-phone' } } ] }, { path: '/customer', component: Layout, children: [ { path: 'index', name: 'Customer', component: () => import('@/views/customer/index'), meta: { title: '客户管理', icon: 'el-icon-user' } } ] }, { path: '/nested', component: Layout, redirect: '/nested/menu1', name: 'Nested', meta: { title: 'Nested', icon: 'nested' }, children: [ { path: 'menu1', component: () => import('@/views/nested/menu1/index'), // Parent router-view name: 'Menu1', meta: { title: 'Menu1' }, children: [ { path: 'menu1-1', component: () => import('@/views/nested/menu1/menu1-1'), name: 'Menu1-1', meta: { title: 'Menu1-1' } }, { path: 'menu1-2', component: () => import('@/views/nested/menu1/menu1-2'), name: 'Menu1-2', meta: { title: 'Menu1-2' }, children: [ { path: 'menu1-2-1', component: () => import('@/views/nested/menu1/menu1-2/menu1-2-1'), name: 'Menu1-2-1', meta: { title: 'Menu1-2-1' } }, { path: 'menu1-2-2', component: () => import('@/views/nested/menu1/menu1-2/menu1-2-2'), name: 'Menu1-2-2', meta: { title: 'Menu1-2-2' } } ] }, { path: 'menu1-3', component: () => import('@/views/nested/menu1/menu1-3'), name: 'Menu1-3', meta: { title: 'Menu1-3' } } ] }, { path: 'menu2', component: () => import('@/views/nested/menu2/index'), name: 'Menu2', meta: { title: 'menu2' } } ] }, { path: 'external-link', component: Layout, children: [ { path: 'https://panjiachen.github.io/vue-element-admin-site/#/', meta: { title: 'External Link', icon: 'link' } } ] }, // 404 page must be placed at the end !!! { path: '*', redirect: '/404', hidden: true } ] const createRouter = () => new Router({ // mode: 'history', // require service support scrollBehavior: () => ({ y: 0 }), routes: constantRoutes }) const router = createRouter() // Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465 export function resetRouter() { const newRouter = createRouter() router.matcher = newRouter.matcher // reset router } export default router