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); } });