2017-08-30 17:42:06 +08:00
|
|
|
import router from './router'
|
|
|
|
import store from './store'
|
|
|
|
import NProgress from 'nprogress' // Progress 进度条
|
|
|
|
import 'nprogress/nprogress.css'// Progress 进度条样式
|
2017-10-25 17:37:42 +08:00
|
|
|
import { Message } from 'element-ui'
|
2017-08-30 17:42:06 +08:00
|
|
|
import { getToken } from '@/utils/auth' // 验权
|
|
|
|
|
2017-10-18 15:05:30 +08:00
|
|
|
const whiteList = ['/login'] // 不重定向白名单
|
2017-08-30 17:42:06 +08:00
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
|
NProgress.start()
|
|
|
|
if (getToken()) {
|
|
|
|
if (to.path === '/login') {
|
|
|
|
next({ path: '/' })
|
2018-04-18 13:44:55 +08:00
|
|
|
NProgress.done() // if current page is dashboard will not trigger afterEach hook, so manually handle it
|
2017-08-30 17:42:06 +08:00
|
|
|
} else {
|
|
|
|
if (store.getters.roles.length === 0) {
|
2017-10-18 15:05:30 +08:00
|
|
|
store.dispatch('GetInfo').then(res => { // 拉取用户信息
|
|
|
|
next()
|
2017-10-25 17:37:42 +08:00
|
|
|
}).catch(() => {
|
|
|
|
store.dispatch('FedLogOut').then(() => {
|
|
|
|
Message.error('验证失败,请重新登录')
|
|
|
|
next({ path: '/login' })
|
|
|
|
})
|
2017-08-30 17:42:06 +08:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (whiteList.indexOf(to.path) !== -1) {
|
|
|
|
next()
|
|
|
|
} else {
|
|
|
|
next('/login')
|
|
|
|
NProgress.done()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
router.afterEach(() => {
|
|
|
|
NProgress.done() // 结束Progress
|
|
|
|
})
|