This commit is contained in:
xiaozhiyong
2023-06-07 16:12:40 +08:00
parent e77f33f4dd
commit 6c858a519c

View File

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