Browse Source

!791 优化白名单页面放行逻辑

Merge pull request !791 from 也曾为你像超人/N/A
newMaster
若依 2 years ago
committed by Gitee
parent
commit
a90355eb5e
No known key found for this signature in database GPG Key ID: 173E9B9CA92EEF8F
  1. 2
      ruoyi-ui/src/permission.js

2
ruoyi-ui/src/permission.js

@ -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