|
@@ -118,8 +118,8 @@ export default {
|
|
|
vehicleNo: parkingRecord.vehicleNo,
|
|
|
enterTime: parkingRecord.enterTime,
|
|
|
serviceMin: parkingRecord.serviceMin,
|
|
|
- totalFee: Math.abs(parkingRecord?.totalFee / 100 || 0).toFixed(2), //应缴
|
|
|
- actualPayFee: Math.abs(this.actualPayFee || 0).toFixed(2), //应付金额
|
|
|
+ totalFee: parkingRecord.totalFeeInYuan, //应缴
|
|
|
+ actualPayFee: this.actualPayFee, //应付金额
|
|
|
},
|
|
|
discountInfo: {
|
|
|
usingTotalDiscount: discountInfo?.usingTotalDiscount || 0, //优惠金额"
|