refine code
This commit is contained in:
@@ -70,7 +70,6 @@ router.beforeEach((to, from, next) => {
|
||||
});
|
||||
}
|
||||
} else { // 页面不需要权限 直接进入
|
||||
console.log(store.getters.roles)
|
||||
if (store.getters.roles.length !== 0) {
|
||||
next();
|
||||
} else {
|
||||
@@ -87,7 +86,7 @@ router.beforeEach((to, from, next) => {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (whiteList.indexOf(to.path) !== -1) { // 在免登入白名单,直接进入
|
||||
if (whiteList.indexOf(to.path) !== -1) { // 在免登录白名单,直接进入
|
||||
next()
|
||||
} else {
|
||||
next('/login'); // 否则全部重定向到登录页
|
||||
|
Reference in New Issue
Block a user