permission.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. import router from './router'
  2. import store from './store'
  3. import storage from 'store'
  4. import NProgress from 'nprogress' // progress bar
  5. import '@/components/NProgress/nprogress.less' // progress bar custom style
  6. // import notification from 'ant-design-vue/es/notification'
  7. import { setDocumentTitle, domTitle } from '@/utils/domUtil'
  8. import { ACCESS_TOKEN } from '@/store/mutation-types'
  9. import { i18nRender } from '@/locales'
  10. NProgress.configure({ showSpinner: false }) // NProgress Configuration
  11. const allowList = [
  12. 'login',
  13. 'applyLicense',
  14. 'cargodetail',
  15. 'dangerouscargodetail',
  16. 'xraycargodetail',
  17. 'xraygoodsnamekeysuggest',
  18. 'riskgoodsnamekeysuggest',
  19. 'dangerousgoodsnamekeysuggest',
  20. 'optimizationsuggestionrule',
  21. 'waybill',
  22. 'redirect'
  23. ] // no redirect allowList
  24. const loginRoutePath = '/user/login'
  25. const defaultRoutePath = '/index'
  26. router.beforeEach((to, from, next) => {
  27. NProgress.start() // start progress bar
  28. to.meta && (typeof to.meta.title !== 'undefined' && setDocumentTitle(`${i18nRender(to.meta.title)} - ${domTitle}`))
  29. // 存储params参数到本地
  30. const paramsJson = JSON.stringify(to.params)
  31. if (paramsJson !== '{}') {
  32. localStorage.setItem('routerParams' + to.name, paramsJson)
  33. }
  34. /* has token */
  35. if (storage.get(ACCESS_TOKEN)) {
  36. if (to.path === loginRoutePath || to.path === '/') {
  37. next({ path: defaultRoutePath })
  38. NProgress.done()
  39. } else {
  40. // check login user.roles is null
  41. if (store.getters.roles.length === 0) {
  42. // request login userInfo
  43. store
  44. .dispatch('GetInfo')
  45. .then(res => {
  46. // const roles = res.result && res.result.role
  47. const roles = res.roles
  48. // generate dynamic router
  49. store.dispatch('GenerateRoutes', { roles }).then(() => {
  50. // 根据roles权限生成可访问的路由表
  51. // 动态添加可访问路由表
  52. router.addRoutes(store.getters.addRouters)
  53. // router.addRoutes(accessRoutes)
  54. // 请求带有 redirect 重定向时,登录自动重定向到该地址
  55. next({ ...to, replace: true }) // hack方法 确保addRoutes已完成
  56. // const redirect = decodeURIComponent(from.query.redirect || to.path)
  57. // if (to.path === redirect) {
  58. // // set the replace: true so the navigation will not leave a history record
  59. // next({ ...to, replace: true })
  60. // } else {
  61. // // 跳转到目的路由
  62. // next({ path: redirect })
  63. // }
  64. })
  65. })
  66. .catch(() => {
  67. // notification.error({
  68. // message: '错误',
  69. // description: '请求用户信息失败,请重试'
  70. // })
  71. // 失败时,获取用户信息失败时,调用登出,来清空历史保留信息
  72. store.dispatch('Logout').then(() => {
  73. next({ path: '/' })
  74. })
  75. })
  76. } else {
  77. next()
  78. }
  79. }
  80. } else {
  81. if (allowList.includes(to.name)) {
  82. // 在免登录名单,直接进入
  83. next()
  84. } else {
  85. next({ path: loginRoutePath, query: { redirect: to.fullPath } })
  86. NProgress.done() // if current page is login will not trigger afterEach hook, so manually handle it
  87. }
  88. }
  89. })
  90. router.afterEach(() => {
  91. NProgress.done() // finish progress bar
  92. })