From b5f7e31b706cf7cc2b0694cf2e0d5ff63ae7ca5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=88=9C=E5=B2=B3?= <5680075+shunyue@user.noreply.gitee.com> Date: Tue, 9 May 2023 08:24:52 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=B7=B3=E8=BD=AC?= =?UTF-8?q?=E5=88=B0=E7=99=BB=E5=BD=95=E9=A1=B5=E9=9D=A2=E4=BC=A0=E5=8F=82?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 舜岳 <5680075+shunyue@user.noreply.gitee.com> --- src/router/guard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/guard.ts b/src/router/guard.ts index 777f303..f3cf2e4 100644 --- a/src/router/guard.ts +++ b/src/router/guard.ts @@ -33,7 +33,7 @@ function createAfterEachGuard(router: Router) { const authStore = useAuthStore(); if (!authStore.isLogin && to && to.name !== 'Login') { // 如果没有登录且目标路由不是登录页面则跳转到登录页面 - router.push({ name: 'Login', tabBar: to?.meta?.tabBar, ...to.query }); + router.push({ name: 'Login', params: { tabBar: to?.meta?.tabBar, ...to.query }}); } else if (authStore.isLogin && to && to.name === 'Login') { // 如果已经登录且目标页面是登录页面则跳转至首页 router.replaceAll({ name: 'Home' });