Browse Source

路由获取用户信息失败跳过处理

master
安虹睿 1 year ago
parent
commit
c29cd0f5ec
  1. 2
      Code/Fe/src/permission.js
  2. 2
      Code/Fe/src/store/modules/user.js

2
Code/Fe/src/permission.js

@ -88,7 +88,7 @@ router.beforeEach(async (to, from, next) => {
// next(`/login?loginName=${to.query.loginName}&isAutoLogin=${to.query.isAutoLogin}`) // next(`/login?loginName=${to.query.loginName}&isAutoLogin=${to.query.isAutoLogin}`)
// next(`/login`) // next(`/login`)
localStorage.removeItem("isLoginName") localStorage.removeItem("isLoginName")
Message.error('获取用户信息失败,请重试!') // Message.error('获取用户信息失败,请重试!')
}) })
// }) // })
// .catch((error) => { // .catch((error) => {

2
Code/Fe/src/store/modules/user.js

@ -136,7 +136,7 @@ const actions = {
} }
}) })
.catch(err => { .catch(err => {
reject(error) reject(err)
console.log('获取用户信息失败,请重试') console.log('获取用户信息失败,请重试')
}) })
}) })

Loading…
Cancel
Save