From 9b8f4e196d194bfde3b7fd05216ab601fcba8b76 Mon Sep 17 00:00:00 2001 From: zhonghua1 Date: Tue, 16 Dec 2025 23:23:38 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E7=99=BB=E5=BD=95=E6=88=90=E5=8A=9F?= =?UTF-8?q?=E5=90=8E=E8=B7=B3=E8=BD=AC=E9=94=99=E8=AF=AF=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni_modules/uni-id-pages/pages/login/login-withpwd.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/uni_modules/uni-id-pages/pages/login/login-withpwd.vue b/uni_modules/uni-id-pages/pages/login/login-withpwd.vue index 07c8823..a35ab63 100644 --- a/uni_modules/uni-id-pages/pages/login/login-withpwd.vue +++ b/uni_modules/uni-id-pages/pages/login/login-withpwd.vue @@ -137,13 +137,13 @@ uni.showToast({ title: body.message || '登录成功', icon: 'none', - duration: 1500 + duration: 800 }) - // 登录成功后跳转到首页(这里使用项目首页路径,如需调整可改为你期望的页面) + // 登录成功后跳转到 tabBar 首页(接待页) setTimeout(() => { - uni.reLaunch({ - url: '/pages/list/list' + uni.switchTab({ + url: '/pages/reception/reception' }) }, 300) },