mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
fix(projects): 修复了登录页重定向到404的问题
This commit is contained in:
parent
d45812bf3b
commit
fd7ef2d3b1
@ -19,7 +19,8 @@ export async function createPermissionGuard(
|
|||||||
if (to.name === 'login') {
|
if (to.name === 'login') {
|
||||||
next();
|
next();
|
||||||
} else {
|
} else {
|
||||||
const redirect = to.fullPath;
|
// login除了404,其余在登录后重定向到之前的网页
|
||||||
|
const redirect = to.name === 'not-found' ? undefined : to.fullPath;
|
||||||
next({ path: '/login', query: { redirect } });
|
next({ path: '/login', query: { redirect } });
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user