根据后台配置的免费出场时间显示

This commit is contained in:
赵毅 2025-09-13 10:41:50 +08:00
parent 058d2d4a60
commit 6e40c84b89

View File

@ -95,7 +95,7 @@
</view>
</view>
<view class="notice">
<text class="notice-text"> 请于付款后15分钟内离场否则将加收停车费</text>
<text class="notice-text"> 请于付款后{{ feeOutTime }}分钟内离场否则将加收停车费</text>
</view>
<view class="payment-methods">
<view class="payment-item" :class="{ 'selected': paymentMethod === 'wechat' }"
@ -173,6 +173,7 @@ export default {
parkingLotName: '',
costAmount: '',
currentCarNumber: '',
feeOutTime: '',//
entryTime: '',
billingTime: '',
paymentMethod: 'wechat',
@ -319,6 +320,7 @@ export default {
this.costAmount = res.fee_amount;
this.currentCarNumber = res.car_number;
this.entryTime = res.in_time;
this.feeOutTime = res.parking.free_out_time
//
if (this.timerId) {
clearInterval(this.timerId);