permission.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import router from './router'
  2. import store from './store'
  3. import NProgress from 'nprogress' // Progress 进度条
  4. import 'nprogress/nprogress.css'// Progress 进度条样式
  5. import { Message } from 'element-ui'
  6. import { getToken } from '@/utils/auth' // 验权
  7. const whiteList = ['/login'] // 不重定向白名单
  8. router.beforeEach((to, from, next) => {
  9. NProgress.start()
  10. if (getToken()) {
  11. if (to.path === '/login') {
  12. next({ path: '/' })
  13. NProgress.done() // if current page is dashboard will not trigger afterEach hook, so manually handle it
  14. } else {
  15. if (store.getters.roles.length === 0) {
  16. store.dispatch('GetInfo').then(res => { // 拉取用户信息
  17. next()
  18. }).catch((err) => {
  19. store.dispatch('FedLogOut').then(() => {
  20. Message.error(err || 'Verification failed, please login again')
  21. next({ path: '/' })
  22. })
  23. })
  24. } else {
  25. next()
  26. }
  27. }
  28. } else {
  29. if (whiteList.indexOf(to.path) !== -1) {
  30. next()
  31. } else {
  32. next(`/login?redirect=${to.path}`) // 否则全部重定向到登录页
  33. NProgress.done()
  34. }
  35. }
  36. })
  37. router.afterEach(() => {
  38. NProgress.done() // 结束Progress
  39. })