|
@@ -1,6 +1,7 @@
|
|
|
<template>
|
|
|
<div :class="[theme, 'bg']">
|
|
|
<!-- 领取临牌:成功 -->
|
|
|
+ <!-- <div @click="qrCodesRule('8b0571a1')">test</div> -->
|
|
|
<div class="success-box" v-if="type === 'success'">
|
|
|
<img class="icon" :src="require(`@/pages/parkingFee/static/images/unlicensed/success.png`)" />
|
|
|
<div class="status-title">临牌领取成功</div>
|
|
@@ -200,14 +201,16 @@ export default {
|
|
|
const unlicensedCarCheckInres = await unlicensedCarCheckIn({ // 获取无牌车牌
|
|
|
gateId: qrCodesres.gateId
|
|
|
});
|
|
|
+ this.type = 'success'
|
|
|
+ this.vehicleNo = unlicensedCarCheckInres.vehicleNo
|
|
|
// 前往 缴费支付页面
|
|
|
- this.$router.replace({
|
|
|
- path: 'parkingFeeMsg',
|
|
|
- query: {
|
|
|
- type: 'success',
|
|
|
- vehicleNo: unlicensedCarCheckInres.vehicleNo
|
|
|
- }
|
|
|
- })
|
|
|
+ // this.$router.replace({
|
|
|
+ // path: 'parkingFeeMsg',
|
|
|
+ // query: {
|
|
|
+ // type: 'success',
|
|
|
+ // vehicleNo: unlicensedCarCheckInres.vehicleNo
|
|
|
+ // }
|
|
|
+ // })
|
|
|
} catch (err) {
|
|
|
// 车场扫描道闸入口,发现无车/车场扫描道闸入口,发现有牌车 >>> 停止往下执行,默认提示报错信息
|
|
|
if (/CAR_HAS_PLATE/.test(err.code)) {
|