Browse Source

修复第一次跳转白屏

main
pixel 5 years ago
parent
commit
072608215b
  1. 2
      QMPlusVuePage/src/permission.js

2
QMPlusVuePage/src/permission.js

@ -18,7 +18,7 @@ router.beforeEach(async(to, from, next) => {
// 在白名单中的判断情况
if (whiteList.indexOf(to.name) > -1) {
if (token) {
next({ name: 'dashbord' })
next({ path: '/layout/dashbord' })
} else {
next()
}

Loading…
Cancel
Save