perf: 网络连接时 500 自动跳转到主页

This commit is contained in:
ChenZhaoYu 2023-03-22 20:01:39 +08:00
parent 814c3a2565
commit 5fee11323b
1 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,10 @@ export function setupPageGuard(router: Router) {
const data = await authStore.getSession() const data = await authStore.getSession()
if (String(data.auth) === 'false' && authStore.token) if (String(data.auth) === 'false' && authStore.token)
authStore.removeToken() authStore.removeToken()
next() if (to.path === '/500')
next({ name: 'Root' })
else
next()
} }
catch (error) { catch (error) {
if (to.path !== '/500') if (to.path !== '/500')