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)