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