Commit 03a5c6a7067b8bd8c318c9f544b860bf4b69fc92
1 parent
9269cefa
黄石测试完成
Showing
1 changed file
with
3 additions
and
2 deletions
src/components/parkRecord.vue
... | ... | @@ -15,7 +15,7 @@ |
15 | 15 | <div v-show="currentTabActive==0"> |
16 | 16 | |
17 | 17 | <div v-if="parkingData.length>0"> |
18 | - <p class="free-tip" v-if="parkingData[0].parkDuration<=2100">停车30分钟内无需缴费,请直接离场。</p> | |
18 | + <p class="free-tip" v-if="parkingData[0].parkDuration<=2100">停车35分钟内无需缴费,请直接离场。</p> | |
19 | 19 | |
20 | 20 | <div class="cost-main" v-for="i in parkingData"> |
21 | 21 | <ul class="cost-header"> |
... | ... | @@ -171,6 +171,7 @@ export default { |
171 | 171 | parkState: 10, |
172 | 172 | terminalSource: 7, |
173 | 173 | carNumber: this.carNumber, |
174 | + carNumberColor: this.carColor, | |
174 | 175 | // sign: md5sign, |
175 | 176 | orgId: this.$utils.myOrgId |
176 | 177 | } |
... | ... | @@ -315,7 +316,7 @@ export default { |
315 | 316 | { |
316 | 317 | path:'orderPay', |
317 | 318 | query:{ |
318 | - carColor:0,// 车牌颜色 | |
319 | + carColor:this.carColor,// 车牌颜色 | |
319 | 320 | arrearageTotalFee: res.arrearageTotalFee,// 应收 |
320 | 321 | arrearageDiscFee: res.arrearageDiscFee,// 优惠 |
321 | 322 | arrearageActFee: res.arrearageActFee,// 实收 | ... | ... |