guards.js 1.69 KB
Newer Older
1
import { loginIgnore } from '@/router/index';
水落(YangLei)'s avatar
水落(YangLei) committed
2
import { getUserInfo } from '@/utils';
3 4
import { checkAuthorization } from '@/utils/requestUtil';
import NProgress from 'nprogress';
水落(YangLei)'s avatar
水落(YangLei) committed
5
import { globalRoutes } from '@/router/config';
wb-ct393452's avatar
wb-ct393452 committed
6

7
NProgress.configure({ showSpinner: false });
wb-ct393452's avatar
wb-ct393452 committed
8

水落(YangLei)'s avatar
水落(YangLei) committed
9 10 11 12 13 14 15 16
function hasAuthority(to) {
    const { path } = to;
    if (globalRoutes.find(m => m.path === path)) return true;
    const { menuList = [] } = getUserInfo();
    // return !!menuList.find(i => i.menuUrl === path);
    return true;
}

wb-ct393452's avatar
wb-ct393452 committed
17 18 19 20 21 22 23
/**
 * 进度条开始
 * @param to
 * @param form
 * @param next
 */
const progressStart = (to, from, next) => {
24 25 26 27 28 29
    // start progress bar
    if (!NProgress.isStarted()) {
        NProgress.start();
    }
    next();
};
wb-ct393452's avatar
wb-ct393452 committed
30 31 32 33 34 35 36 37 38

/**
 * 登录守卫
 * @param to
 * @param form
 * @param next
 * @param options
 */
const loginGuard = (to, from, next, options) => {
39 40 41 42 43 44 45 46
    const { message } = options;
    if (!loginIgnore.includes(to) && !checkAuthorization()) {
        message.warning('登录已失效,请重新登录');
        next({ path: '/login' });
    } else {
        next();
    }
};
wb-ct393452's avatar
wb-ct393452 committed
47 48 49 50 51 52 53 54 55

/**
 * 权限守卫
 * @param to
 * @param form
 * @param next
 * @param options
 */
const authorityGuard = (to, from, next, options) => {
水落(YangLei)'s avatar
水落(YangLei) committed
56 57
    const { message } = options;
    if (!hasAuthority(to)) {
58 59 60 61 62 63
        message.warning(`对不起,您无权访问页面: ${to.fullPath},请联系管理员`);
        next({ path: '/403' });
    } else {
        next();
    }
};
wb-ct393452's avatar
wb-ct393452 committed
64 65 66 67 68 69 70 71

/**
 * 进度条结束
 * @param to
 * @param form
 * @param options
 */
const progressDone = () => {
72 73 74
    // finish progress bar
    NProgress.done();
};
wb-ct393452's avatar
wb-ct393452 committed
75 76

export default {
水落(YangLei)'s avatar
水落(YangLei) committed
77
    beforeEach: [progressStart, loginGuard, authorityGuard],
78 79
    afterEach: [progressDone],
};