From fd7ef2d3b146ec4aeed2916ed349132592fd669a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=98chen=2Ehome=E2=80=99?= <1147347984@qq.com> Date: Tue, 16 Aug 2022 00:46:04 +0800 Subject: [PATCH] =?UTF-8?q?fix(projects):=20=E4=BF=AE=E5=A4=8D=E4=BA=86?= =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=A1=B5=E9=87=8D=E5=AE=9A=E5=90=91=E5=88=B0?= =?UTF-8?q?404=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/guard/permission.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/router/guard/permission.ts b/src/router/guard/permission.ts index c9ed21e..fa8893f 100644 --- a/src/router/guard/permission.ts +++ b/src/router/guard/permission.ts @@ -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;