zhaoxiaoqiang
2023-08-25 9583630b27fdd2f2566995a78d8238ce504f3523
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * @Author: zxq
 * @Date: 2021-12-23 15:19:23
 * @LastEditors: zhaoxiaoqiang 287285524@qq.com
 * @LastEditTime: 2023-08-24 16:35:59
 * @Description: Description
 * @FilePath: \qyp_finlean_plat\src\permission.js
 */
import router from './router'
import store from './store'
import { Message } from 'element-ui'
import NProgress from 'nprogress' // progress bar
import 'nprogress/nprogress.css' // progress bar style
import { getSessionId } from '@/utils/auth' // get token from cookie
import getPageTitle from '@/utils/get-page-title'
 
NProgress.configure({ showSpinner: false }) // NProgress Configuration
 
const whiteList = ['/login'] // no redirect whitelist
 
router.beforeEach(async(to, from, next) => {
 
  // start progress bar
  NProgress.start()
  document.title = getPageTitle(to.meta.title)
  const hasToken = getSessionId()
  let _router = (JSON.parse(window.localStorage.getItem('qyp_routers')));
  if (hasToken && _router) {
    if (to.path === '/login') {
        next({ path: '/' })
        NProgress.done()
    }else if(to.path=='/'){
        let path = _router[0].childPowerInfos[0].routePath;
        next({ path: path });
        NProgress.done()
    } else {
      const hasGetUserInfo = store.getters.name
      if (hasGetUserInfo) {
        next()
      } else {
        try {
          next()
        } catch (error) {
          // remove token and go to login page to re-login
          await store.dispatch('user/resetToken')
          Message.error(error || 'Has Error')
          next(`/login?redirect=${to.path}`)
          NProgress.done()
        }
      }
    }
  } else {
    //   /* has no token*/
    if (whiteList.indexOf(to.path) !== -1) {
      // in the free login whitelist, go directly
      next()
    } else {
      // other pages that do not have permission to access are redirected to the login page.
      next(`/login`)
      NProgress.done()
    }
  }
})
 
router.afterEach(() => {
  // finish progress bar
  NProgress.done()
})