From 2ac806f7feeb659ade024238b6ed03885dab8143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E9=A3=9E=E6=B4=8B?= <15778543+xufeiyang6017@user.noreply.gitee.com> Date: Mon, 8 Dec 2025 10:46:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E7=8E=B0=E7=99=BB=E5=BD=95=E9=AA=8C?= =?UTF-8?q?=E8=AF=81=EF=BC=9A=E6=8F=90=E4=BA=A4=E7=94=B3=E8=AF=B7=E5=89=8D?= =?UTF-8?q?=E6=A3=80=E6=9F=A5=E7=99=BB=E5=BD=95=E7=8A=B6=E6=80=81=EF=BC=8C?= =?UTF-8?q?=E7=99=BB=E5=BD=95=E6=88=90=E5=8A=9F=E5=90=8E=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/settlement/index.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pages/settlement/index.js b/pages/settlement/index.js index 5279b14..3f2f73b 100644 --- a/pages/settlement/index.js +++ b/pages/settlement/index.js @@ -974,10 +974,12 @@ Page({ icon: 'success', duration: 1500, complete: () => { - // 登录成功后关闭弹窗,让用户决定是否继续提交 + // 登录成功后关闭弹窗,并自动提交申请 setTimeout(() => { this.closeOneKeyLoginModal(); this.setData({ showAuthModal: false }); + // 自动提交申请 + this.submitApplication(); }, 1500); } }); @@ -1050,10 +1052,12 @@ Page({ icon: 'success', duration: 1500, complete: () => { - // 登录成功后关闭弹窗,让用户决定是否继续提交 + // 登录成功后关闭弹窗,并自动提交申请 setTimeout(() => { this.closeOneKeyLoginModal(); this.setData({ showAuthModal: false }); + // 自动提交申请 + this.submitApplication(); }, 1500); } });