Skip to content
Snippets Groups Projects
Commit 1c852db0 authored by dingyi1993's avatar dingyi1993 Committed by 花裤衩
Browse files

fix:fix undone NProgress.

parent 9463c50e
No related branches found
No related tags found
No related merge requests found
......@@ -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()
}
// 可删 ↑
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment