index.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * @Author: your name
  3. * @Date: 2021-10-14 17:17:53
  4. * @LastEditTime: 2022-06-10 10:17:05
  5. * @LastEditors: your name
  6. * @Description: In User Settings Edit
  7. * @FilePath: \Foshan4A\src\router\index.js
  8. */
  9. import Vue from 'vue'
  10. import Router from 'vue-router'
  11. import store from '@/store'
  12. import Layout from '@/layout'
  13. Vue.use(Router)
  14. /**
  15. * Note: sub-menu only appear when route children.length >= 1
  16. * Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html
  17. *
  18. * hidden: true if set true, item will not show in the sidebar(default is false)
  19. * alwaysShow: true if set true, will always show the root menu
  20. * if not set alwaysShow, when item has more than one children route,
  21. * it will becomes nested mode, otherwise not show the root menu
  22. * redirect: noRedirect if set noRedirect will no redirect in the breadcrumb
  23. * name:'router-name' the name is used by <keep-alive> (must set!!!)
  24. * meta : {
  25. roles: ['admin','editor'] control the page roles (you can set multiple roles)
  26. title: 'title' the name show in sidebar and breadcrumb (recommend set)
  27. icon: 'svg-name'/'el-icon-x' the icon show in the sidebar
  28. breadcrumb: false if set false, the item will hidden in breadcrumb(default is true)
  29. activeMenu: '/example/list' if set path, the sidebar will highlight the path you set
  30. }
  31. */
  32. // const routesPush = (arr, routes) => {
  33. // if (!Array.isArray(arr)) return '请传入数组格式路由表'
  34. // for (let i = 0; i < arr.length; i++) {
  35. // routes.unshift(arr[i])
  36. // }
  37. // }
  38. /**
  39. * constantRoutes
  40. * a base page that does not have permission requirements
  41. * all roles can be accessed
  42. */
  43. export const constantRoutes = [
  44. {
  45. path: '/login',
  46. component: () => import('@/views/login/index'),
  47. hidden: true
  48. },
  49. {
  50. path: '/404',
  51. component: () => import('@/views/404'),
  52. hidden: true
  53. },
  54. {
  55. path: '/',
  56. component: Layout,
  57. hidden: true,
  58. children: [
  59. {
  60. path: '',
  61. name: 'HomePage',
  62. meta: { title: '首页', },
  63. component: () => import('@/views/HomePage/index.vue'),
  64. },
  65. ]
  66. }
  67. ]
  68. // 动态路由
  69. export const asyncRoutes = []
  70. // 插入路由
  71. // asyncRoutes.push({ path: '/', component: () => import('@/views/HomePage/index.vue'), hidden: true })
  72. asyncRoutes.push({
  73. path: '*',
  74. component: () => import('@/views/404'),
  75. hidden: true
  76. })
  77. const createRouter = () =>
  78. new Router({
  79. // mode: 'history', // require service support
  80. scrollBehavior: () => ({ y: 0 }),
  81. routes: constantRoutes
  82. })
  83. const router = createRouter()
  84. router.beforeEach((to, from, next) => {
  85. if (
  86. (from.path.includes('flightView') && from.query.flightNO && from.query.flightDate) ||
  87. (from.path.includes('containerView') &&
  88. from.query.flightNO &&
  89. from.query.flightDate &&
  90. from.query.departureAirport &&
  91. from.query.landingAirport &&
  92. from.query.containerID)
  93. ) {
  94. store.dispatch('keepAlive/savePage', from)
  95. }
  96. if (
  97. from.meta?.keepAlive &&
  98. ((to.path.includes('flightView') && (!to.query.flightNO || !to.query.flightDate)) ||
  99. (to.path.includes('containerView') &&
  100. (!to.query.flightNO ||
  101. !to.query.flightDate ||
  102. !to.query.departureAirport ||
  103. !to.query.landingAirport ||
  104. !to.query.containerID)))
  105. ) {
  106. const savedPage = store.getters.savedPages.find(savedPage => savedPage.name === to.name)
  107. if (savedPage) {
  108. next(savedPage.fullPath)
  109. }
  110. }
  111. next()
  112. })
  113. // Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465
  114. export function resetRouter () {
  115. const newRouter = createRouter()
  116. router.matcher = newRouter.matcher // reset router
  117. }
  118. export default router