|
|
|
@ -84,7 +84,8 @@ |
|
|
|
<!-- <span class="color-light">{{ withdrawFee.withdrawal_fee }} {{coin}}</span> --> |
|
|
|
</view> |
|
|
|
<view class="d-flex align-end p-y-xs justify-between bg-form-panel-3 rounded-xs p-y-sm"> |
|
|
|
<v-input v-model="withdrawFee.withdrawal_fee" disabled class="p-x-ms color-light w-max fn-13 rounded-xs" :placeholder="$t('assets.b9')"> |
|
|
|
|
|
|
|
<v-input v-model="coin=='USDT'&&rechargeType==3?withdrawFee.trc20:withdrawFee.withdrawal_fee" disabled class="p-x-ms color-light w-max fn-13 rounded-xs" :placeholder="$t('assets.b9')"> |
|
|
|
<template #right> |
|
|
|
{{coin}} |
|
|
|
</template> |
|
|
|
@ -197,8 +198,8 @@ export default { |
|
|
|
withdrawFee: {}, |
|
|
|
list: [], |
|
|
|
page: 1, |
|
|
|
loadMore: true, |
|
|
|
secondaryShow:false |
|
|
|
loadMore: true, |
|
|
|
secondaryShow:false |
|
|
|
}; |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
@ -215,7 +216,9 @@ export default { |
|
|
|
this.form.address = ""; |
|
|
|
if (this.coin != "USDT") { |
|
|
|
this.rechargeType = 1; |
|
|
|
} |
|
|
|
}else{ |
|
|
|
this.rechargeType = 3; |
|
|
|
} |
|
|
|
this.withdrawalBalance(); |
|
|
|
} |
|
|
|
}, |
|
|
|
@ -251,6 +254,7 @@ export default { |
|
|
|
address_type:this.rechargeType |
|
|
|
}; |
|
|
|
Wallet.withdrawalBalance(data).then((res) => { |
|
|
|
// console.info(res) |
|
|
|
this.withdrawFee = res.data; |
|
|
|
}); |
|
|
|
}, |
|
|
|
|