fix:fix undone NProgress.

This commit is contained in:
dingyi1993 2017-10-21 14:12:47 +08:00 committed by 花裤衩
parent 9463c50e06
commit 1c852db0ef

View file

@ -18,6 +18,7 @@ router.beforeEach((to, from, next) => {
if (getToken()) { // 判断是否有token
if (to.path === '/login') {
next({ path: '/' })
NProgress.done()
} else {
if (store.getters.roles.length === 0) { // 判断当前用户是否已拉取完user_info信息
store.dispatch('GetUserInfo').then(res => { // 拉取user_info
@ -37,6 +38,7 @@ router.beforeEach((to, from, next) => {
next()//
} else {
next({ path: '/401', query: { noGoBack: true }})
NProgress.done()
}
// 可删 ↑
}