|
@@ -171,7 +171,7 @@
|
|
this.discernReceipt = response.data.discernReceipt // 支付记录
|
|
this.discernReceipt = response.data.discernReceipt // 支付记录
|
|
this.payTotalFee = response.data.order.payTotalFee // 订单总额
|
|
this.payTotalFee = response.data.order.payTotalFee // 订单总额
|
|
this.receiptAmount = response.data.order.receiptAmount // 已付金额
|
|
this.receiptAmount = response.data.order.receiptAmount // 已付金额
|
|
- this.payableAmount = response.data.order.payableAmount - this.receiptAmount// 已付金额
|
|
|
|
|
|
+ this.payableAmount = (response.data.order.payableAmount*100 - this.receiptAmount*100)/100// 已付金额
|
|
this.payAmount = this.toFixedFn(this.payableAmount) // 自定义金额
|
|
this.payAmount = this.toFixedFn(this.payableAmount) // 自定义金额
|
|
console.log('this.payAmount',this.payAmount)
|
|
console.log('this.payAmount',this.payAmount)
|
|
this.balanceAmount = this.payableAmount - this.payAmount // 计算剩余支付金额
|
|
this.balanceAmount = this.payableAmount - this.payAmount // 计算剩余支付金额
|