Browse Source

币币买卖后不显示金额

master
liaoxinyu 1 day 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.form.total = "";
this.$toast.success(this.$t("exchange.e1")); this.$toast.success(this.$t("exchange.e1"));
this.getUserBalance(); this.getUserBalance();
setTimeout(()=>{
this.getUserBalance();
},2000)
this.dtime = setInterval(() => { this.dtime = setInterval(() => {
this.getCurrentEntrust(true) this.getCurrentEntrust(true)
}, 1000); }, 1000);
@ -823,7 +826,12 @@ export default {
this.getDefaultPrice(); this.getDefaultPrice();
// let n = this.progress[this.sliderActive];// -- // let n = this.progress[this.sliderActive];// --
let n = 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) { getValue(amount) {

Loading…
Cancel
Save