This commit is contained in:
xiaozhiyong
2023-06-20 19:02:22 +08:00
parent 142d70d164
commit acc86e9030
4 changed files with 11 additions and 7 deletions

View File

@@ -362,7 +362,7 @@ export default {
if (refineryInfo) {
let balance = refineryInfo.balance * 10000
let costTotal = orderInfo.floorPrice * orderInfo.preQuantity * 10000
let total = this.$utils.fixedHandle((balance + costTotal) / 10000)
let total = this.$utils.fixedHandle((balance - costTotal) / 10000)
return total
}
return 0