优化白名单页面放行逻辑

pull/351/head
RuoYi 7 months ago
parent 4512af436d
commit 2eeb642f07

@ -18,6 +18,8 @@ router.beforeEach((to, from, next) => {
if (to.path === '/login') {
next({ path: '/' })
NProgress.done()
} else if (whiteList.indexOf(to.path) !== -1) {
next()
} else {
if (store.getters.roles.length === 0) {
isRelogin.show = true

Loading…
Cancel
Save