@@ -287,7 +287,7 @@ export default {
},
// 实收金额
receivedPrice () {
- const numInfo = this.totalData.settledAmount - this.totalData.refundingAmount - this.totalData.refundedAmount
+ const numInfo = (this.totalData.settledAmount * 100 - this.totalData.refundingAmount * 100 - this.totalData.refundedAmount * 100) / 100
return numInfo.toFixed(2)
}