duhuizhe
2023-10-16 3aa55dd3f62cee2c1c4c0aa74e1570acf83f8927
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
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 { getToken, getCPass } from '@/utils/auth'; // get token from cookie
import getPageTitle from '@/utils/get-page-title';
 
NProgress.configure({ showSpinner: false }); // NProgress Configuration
 
const whiteList = ['/login', '/auth-redirect','/resetPwd']; // no redirect whitelist
 
 
router.beforeEach(async (to, from, next) => {
  // start progress bar
  NProgress.start();
 
  // set page title
  document.title = getPageTitle(to.meta.title);
 
  // determine whether the user has logged in
  const hasToken = getToken();
  if (hasToken) {
    if (to.path === '/login') {
      // if is logged in, redirect to the home page
      next({ path: '/' });
      NProgress.done();
    }else if( to.path === '/resetPwd'){
      next();
      NProgress.done();
    }else {
      const hasRoles = store.getters.roles && store.getters.roles.length > 0;
      if (hasRoles) {
        next();
      } else {
        try {
          const roles = await store.dispatch('user/getInfo').roles;
          const accessRoutes = await store.dispatch('permission/generateRoutes');
          router.options.routes = accessRoutes // 动态添加可访问路由表
          router.addRoutes(accessRoutes);
          next({ ...to, replace: true });
        } catch (error) {
          store.dispatch('user/logout').then(() => {
            Message.error(error)
            next({ path: '/login?redirect=${to.path}' })
          })
        }
      }
    }
  } 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?redirect=${to.path}`);
      next('/login');
      NProgress.done();
    }
  }
});
 
router.afterEach(() => {
  // finish progress bar
  NProgress.done();
});