1. 可退款金额保留两位小数
This commit is contained in:
parent
469840e5e9
commit
34955a8e5c
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue