1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import router from './router'
- import store from './store'
- import NProgress from 'nprogress'
- import 'nprogress/nprogress.css'
- import { Message } from 'element-ui'
- import { getToken } from '@/utils/auth'
- const whiteList = ['/login']
- router.beforeEach((to, from, next) => {
- NProgress.start()
- if (getToken()) {
- if (to.path === '/login') {
- next({ path: '/' })
- NProgress.done()
- } else {
- if (store.getters.roles.length === 0) {
- store.dispatch('GetInfo').then(res => {
- next()
- }).catch(() => {
- store.dispatch('FedLogOut').then(() => {
- Message.error('验证失败,请重新登录')
- next({ path: '/login' })
- })
- })
- } else {
- next()
- }
- }
- } else {
- if (whiteList.indexOf(to.path) !== -1) {
- next()
- } else {
- next('/login')
- NProgress.done()
- }
- }
- })
- router.afterEach(() => {
- NProgress.done()
- })
|