|
@@ -180,7 +180,7 @@ export default {
|
|
|
const totalAmount = (this.detail && this.detail.totalAmount) ? this.detail.totalAmount : 0
|
|
|
const totalPutAmount = (this.detail && this.detail.totalPutAmount) ? this.detail.totalPutAmount : 0
|
|
|
const totalCancelAmount = (this.detail && this.detail.totalCancelAmount) ? this.detail.totalCancelAmount : 0
|
|
|
- return Number(totalAmount) - Number(totalPutAmount) - Number(totalCancelAmount)
|
|
|
+ return (Number(totalAmount) * 100 - Number(totalPutAmount) * 100 - Number(totalCancelAmount) * 100) / 100
|
|
|
}
|
|
|
},
|
|
|
methods: {
|