|
@@ -807,6 +807,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
orderInitCallBack(res) {
|
|
|
+ console.log('orderInitCallBack', res);
|
|
|
try {
|
|
|
setTimeout(() => {
|
|
|
this.$store.dispatch('clearUnlicensed');
|
|
@@ -814,11 +815,16 @@ export default {
|
|
|
// 如果 无牌车扫码出场扫码 无需缴费,直接展示无需缴费页面
|
|
|
if(/unlicensedOut/.test(res.code) && res?.unlicensed) {
|
|
|
this.clearOrderTimeEvent()
|
|
|
+ // console.log('818', {
|
|
|
+ // type: 'pay',
|
|
|
+ // ...this.$route.query,
|
|
|
+ // });
|
|
|
+ console.log('822822822822822', this.$route.query);
|
|
|
this.$router.replace({
|
|
|
path: 'parkingFeeMsg',
|
|
|
query: {
|
|
|
- type: 'pay',
|
|
|
...this.$route.query,
|
|
|
+ type: 'pay',
|
|
|
}
|
|
|
});
|
|
|
return
|