fix(projects): 修复了登录页重定向到404的问题

This commit is contained in:
‘chen.home’ 2022-08-16 00:46:04 +08:00
parent d45812bf3b
commit fd7ef2d3b1

View File

@ -19,7 +19,8 @@ export async function createPermissionGuard(
if (to.name === 'login') {
next();
} else {
const redirect = to.fullPath;
// login除了404其余在登录后重定向到之前的网页
const redirect = to.name === 'not-found' ? undefined : to.fullPath;
next({ path: '/login', query: { redirect } });
}
return false;