Browse Source

币币买卖后不显示金额

master
liaoxinyu 23 hours ago
parent
commit
c9585935bf
  1. 10
      pages/exchange/exchange-transaction.vue

10
pages/exchange/exchange-transaction.vue

@ -783,6 +783,9 @@ export default {
this.form.total = "";
this.$toast.success(this.$t("exchange.e1"));
this.getUserBalance();
setTimeout(()=>{
this.getUserBalance();
},2000)
this.dtime = setInterval(() => {
this.getCurrentEntrust(true)
}, 1000);
@ -823,7 +826,12 @@ export default {
this.getDefaultPrice();
// let n = this.progress[this.sliderActive];// --
let n = this.sliderActive;// --
this.sliderChange(n, this.sliderActive);
if(n<0){
this.sliderChange(0, this.sliderActive);
}else{
this.sliderChange(n, this.sliderActive);
}
// this.getUserBalance()
},
//
getValue(amount) {

Loading…
Cancel
Save