index.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. Vue.use(Router)
  4. /* Layout */
  5. import Layout from '@/layout'
  6. import businessRouter from './modules/business'
  7. import fms from './modules/fms'
  8. import ums from './modules/ums'
  9. import outlet from './modules/outlet'
  10. /**
  11. * Note: sub-menu only appear when route children.length >= 1
  12. * Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html
  13. *
  14. * hidden: true if set true, item will not show in the sidebar(default is false)
  15. * alwaysShow: true if set true, will always show the root menu
  16. * if not set alwaysShow, when item has more than one children route,
  17. * it will becomes nested mode, otherwise not show the root menu
  18. * redirect: noRedirect if set noRedirect will no redirect in the breadcrumb
  19. * name:'router-name' the name is used by <keep-alive> (must set!!!)
  20. * meta : {
  21. roles: ['admin','editor'] control the page roles (you can set multiple roles)
  22. title: 'title' the name show in sidebar and breadcrumb (recommend set)
  23. icon: 'svg-name'/'el-icon-x' the icon show in the sidebar
  24. breadcrumb: false if set false, the item will hidden in breadcrumb(default is true)
  25. activeMenu: '/example/list' if set path, the sidebar will highlight the path you set
  26. }
  27. */
  28. /**
  29. * constantRoutes
  30. * a base page that does not have permission requirements
  31. * all roles can be accessed
  32. */
  33. export const constantRoutes = [
  34. {
  35. path: '/login',
  36. component: () => import('@/views/login/index'),
  37. hidden: true
  38. },
  39. {
  40. path: '/404',
  41. component: () => import('@/views/404'),
  42. hidden: true
  43. }
  44. ]
  45. export const asyncRoutes = [
  46. {
  47. path: '/',
  48. component: Layout,
  49. redirect: '/dashboard',
  50. children: [{
  51. path: 'dashboard',
  52. name: 'Dashboard',
  53. component: () => import('@/views/dashboard/index'),
  54. meta: { title: '首页', icon: 'el-icon-s-home' }
  55. }]
  56. },
  57. {
  58. path: '/icon',
  59. component: Layout,
  60. redirect: '/icon/list',
  61. hidden: true,
  62. children: [{
  63. path: 'list',
  64. name: 'icon',
  65. component: () => import('@/views/icons/index'),
  66. meta: { title: 'icon', icon: 'el-icon-s-grid' }
  67. }]
  68. },
  69. businessRouter,
  70. fms,
  71. ums,
  72. outlet,
  73. {
  74. path: '/sys',
  75. component: Layout,
  76. redirect: 'noRedirect',
  77. alwaysShow: true,
  78. name: 'sys',
  79. meta: { title: '系统设置', icon: 'lock', roleValue: 'sys_set' },
  80. children: [
  81. {
  82. path: 'project/list',
  83. name: 'project',
  84. component: () => import('@/views/project/index'),
  85. meta: { title: '项目列表', roleValue: 'project_list_show' }
  86. },
  87. {
  88. path: 'department/list',
  89. name: 'department',
  90. component: () => import('@/views/department/index'),
  91. meta: { title: '部门列表', roleValue: 'department_list_show' }
  92. },
  93. {
  94. path: 'roles/list',
  95. name: 'roles',
  96. component: () => import('@/views/roles/index'),
  97. meta: { title: '角色列表', roleValue: 'roles_list_show' }
  98. },
  99. {
  100. path: 'user/list',
  101. name: 'user',
  102. component: () => import('@/views/user/index'),
  103. meta: { title: '用户列表', roleValue: 'user_list_show' }
  104. }
  105. ]
  106. },
  107. { path: '*', redirect: '/404', hidden: true }
  108. ]
  109. const createRouter = () => new Router({
  110. mode: 'history',
  111. scrollBehavior (to, from, savedPosition) {
  112. if (to.hash) {
  113. return {
  114. selector: to.hash
  115. }
  116. }
  117. // keep-alive 返回缓存页面后记录浏览位置
  118. if (savedPosition && to.meta.keepAlive) {
  119. return savedPosition
  120. }
  121. // 异步滚动操作
  122. return new Promise((resolve) => {
  123. setTimeout(() => {
  124. resolve({ x: 0, y: 1 })
  125. }, 0)
  126. })
  127. },
  128. routes: constantRoutes
  129. })
  130. const router = createRouter()
  131. // Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465
  132. export function resetRouter () {
  133. const newRouter = createRouter()
  134. router.matcher = newRouter.matcher // reset router
  135. }
  136. export default router