This commit is contained in:
weipengfei 2023-09-09 20:13:04 +08:00
parent 34f6838e2a
commit 3767708748
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@
console.log(e); console.log(e);
} }
} }
console.log('App Launch', uni.getSystemInfoSync()) console.log('App Launch')
this.$store.dispatch('initConfig'); this.$store.dispatch('initConfig');
this.$isResolve() this.$isResolve()
try { try {

View File

@ -84,7 +84,7 @@
// //
async loadWithddrawInfo(){ async loadWithddrawInfo(){
let res = await getCurrCycleWithdraw(); let res = await getCurrCycleWithdraw();
this.payMoney.money = res.data.user_currrent_total_withdraw_money; this.payMoney.money = parseFloat(res.data?.user_currrent_total_withdraw_money).toFixed(2);
res.data.end_cycle ? this.payMoney.end_cycle = uni.$u.timeFormat(res.data.end_cycle, 'yyyy-mm-dd') : this.payMoney.end_cycle||''; res.data.end_cycle ? this.payMoney.end_cycle = uni.$u.timeFormat(res.data.end_cycle, 'yyyy-mm-dd') : this.payMoney.end_cycle||'';
}, },
// //