修改页面显示

This commit is contained in:
2023-03-02 21:49:51 +08:00
parent 1371987bed
commit c27540f3ad
3 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ Page({
}
})
cashBalance = Math.floor(cashBalance * 100) / 100
oweBalance = Math.floor(cashBalance * 100) / 100
oweBalance = Math.floor(oweBalance * 100) / 100
sumBalance = Math.floor((cashBalance - oweBalance) * 100) / 100
this.setData({cashAccountList,oweAccountList,cashBalance,oweBalance,sumBalance})
}