移除无用的NProgress.done()(/src/permission.js)

router.afterEach 足够关闭所有的进度条
This commit is contained in:
MaYuanhai 2020-01-14 14:33:39 +08:00 committed by GitHub
parent 6850312e89
commit 1315899493
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -24,7 +24,6 @@ router.beforeEach(async(to, from, next) => {
if (to.path === '/login') {
// if is logged in, redirect to the home page
next({ path: '/' })
NProgress.done()
} else {
// determine whether the user has obtained his permission roles through getInfo
const hasRoles = store.getters.roles && store.getters.roles.length > 0
@ -50,7 +49,6 @@ router.beforeEach(async(to, from, next) => {
await store.dispatch('user/resetToken')
Message.error(error || 'Has Error')
next(`/login?redirect=${to.path}`)
NProgress.done()
}
}
}
@ -63,7 +61,6 @@ router.beforeEach(async(to, from, next) => {
} else {
// other pages that do not have permission to access are redirected to the login page.
next(`/login?redirect=${to.path}`)
NProgress.done()
}
}
})