فهرست منبع

[edit] ach pay

wenliming 2 سال پیش
والد
کامیت
7f0cebb402
1فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  1. 4 2
      src/view/iframe/publish/give-dialog.vue

+ 4 - 2
src/view/iframe/publish/give-dialog.vue

@@ -1943,13 +1943,15 @@ const depositAchCancel = () => {
 }
 
 const depositAchConfirm = async () => {
-    showDepositMessageBox.value = false;
     let currencyInfoRes = await getCurrencyByCode({currencyCode: currentCurrencyInfo.value.currencyCode});
 
     if(currencyInfoRes.code == 0 && currencyInfoRes.data) {
+        showDepositMessageBox.value = false;
+        currentCurrencyInfo.value = currencyInfoRes.data;
+
         let {balance} = currencyInfoRes.data;
         if(balance > finalAmountData.value.orderAmountValue) {
-            payButtonDom.value && payButtonDom.value.balancePay();
+            // payButtonDom.value && payButtonDom.value.balancePay();
         } else {
             message.info('Deposit failed, please try again later');
         }