diff --git a/src/views/wallet/exchange-assets.vue b/src/views/wallet/exchange-assets.vue
index c2feac2..d5b322a 100644
--- a/src/views/wallet/exchange-assets.vue
+++ b/src/views/wallet/exchange-assets.vue
@@ -356,7 +356,7 @@
- {{$t('wallet.handlingFee1')}}: {{withdrawFee.withdrawal_fee | fee}} {{withdrawCoin}}
+ {{$t('wallet.handlingFee1')}}: {{withdrawCoin=='USDT'&&withdraw.addressType==3?withdrawFee.trc20:withdrawFee.withdrawal_fee }} {{withdrawCoin}}
@@ -474,21 +474,6 @@ export default {
}
}
},
- filters:{
- fee(val){
- console.info(val)
- if(typeof(val)=="number" || val=="-"){
- return val
- }else{
- let m = val.split(",");
- if(this.withdraw.addressType==3){
- return m[0]
- }else{
- return m[1]
- }
- }
- }
- },
methods: {
//确认提交贝宝支付
paypalSbumit(){
@@ -614,7 +599,7 @@ export default {
coin_name: item.coin_name
})
.then(data => {
- this.withdrawFee = data;
+ this.withdrawFee = data;
})
.catch(err => { });
},