From 601439f3e67d1541704d77875187281ee48893c7 Mon Sep 17 00:00:00 2001 From: woody Date: Thu, 4 Sep 2025 10:56:21 +0800 Subject: [PATCH] =?UTF-8?q?feat(withDrawal):=20=E7=A7=BB=E9=99=A4=E7=81=B5?= =?UTF-8?q?=E6=B4=BB=E7=94=A8=E5=B7=A5=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/mine/balance/withdrawal.vue | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pages/mine/balance/withdrawal.vue b/pages/mine/balance/withdrawal.vue index 1fa0bab..ff55b4c 100644 --- a/pages/mine/balance/withdrawal.vue +++ b/pages/mine/balance/withdrawal.vue @@ -136,10 +136,10 @@ - + /> --> @@ -252,12 +252,11 @@ export default { bal.addWithdraw(this.dataForm).then(res => { if (res.code == 200) { this.$refs.uToast.show({ - message: res.msg, + message: res.msg || '提现成功', type: 'success', }) - // 显示提现引导弹窗 setTimeout(() => { - this.showWithdrawalGuide = true + uni.navigateBack() }, 300) } })