1. 可退款金额保留两位小数

This commit is contained in:
ssyang1993 2021-06-18 16:17:49 +08:00
parent 469840e5e9
commit 34955a8e5c
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ export default {
},
computed: {
nowRefundAmount () {
return (this.detailData.amount / 100 - this.detailData.refundAmount / 100)
return (this.detailData.amount - this.detailData.refundAmount) / 100
}
},
methods: {