From 21930313f502d300c362f7dce3f16bd14e86785c Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Tue, 18 Nov 2025 10:46:08 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=8E=A5=E5=8F=A3=E5=8F=91=E9=80=81?= =?UTF-8?q?=E6=97=B6=E6=9C=BA):=20=E4=BF=AE=E5=A4=8D=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E8=B5=84=E6=96=99=E5=90=8E=E6=B2=A1=E8=8E=B7=E5=8F=96=E5=88=B0?= =?UTF-8?q?=E6=9C=80=E6=96=B0=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Wallet/CashOut/KYC.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/Wallet/CashOut/KYC.vue b/src/views/Wallet/CashOut/KYC.vue index a68674c..337fa16 100644 --- a/src/views/Wallet/CashOut/KYC.vue +++ b/src/views/Wallet/CashOut/KYC.vue @@ -354,7 +354,7 @@ const uploadImgUrl = async () => { } // 提交申请 -const Submit = () => { +const Submit = async () => { // 检查是否漏填 console.log('checkStatus.value:', checkStatus.value) @@ -362,10 +362,10 @@ const Submit = () => { applyInfo.value.passportFrontUrl = JSON.stringify(resImgUrls.value) if (updateStatus.value) { console.log('更新信息:', applyInfo.value) - updateWithdrawInfoData() + await updateWithdrawInfoData() } else { console.log('添加信息:', applyInfo.value) - addWithdrawInfoData() + await addWithdrawInfoData() } // 先返回到 availableIncome (原始状态) router.go(-1)