Commit f99765832c423fe4c9b9cbf02a029e2e4ccb99cc
1 parent
a8afa949
跳转 最江阴app
Showing
1 changed file
with
4 additions
and
1 deletions
src/components/navigation.vue
1 | <template> | 1 | <template> |
2 | - <div> | 2 | + <div v-show="showCon"> |
3 | <div style="height: 206px;"> | 3 | <div style="height: 206px;"> |
4 | <div class="swiper-container"> | 4 | <div class="swiper-container"> |
5 | <div class="swiper-wrapper"> | 5 | <div class="swiper-wrapper"> |
@@ -49,6 +49,7 @@ export default { | @@ -49,6 +49,7 @@ export default { | ||
49 | carNumber: '', // 车牌号码 | 49 | carNumber: '', // 车牌号码 |
50 | carWrapBG: 0,// 车牌颜色 | 50 | carWrapBG: 0,// 车牌颜色 |
51 | swiperData: [], // 轮播数据 | 51 | swiperData: [], // 轮播数据 |
52 | + showCon:false, | ||
52 | } | 53 | } |
53 | }, | 54 | }, |
54 | mounted() { | 55 | mounted() { |
@@ -58,6 +59,8 @@ export default { | @@ -58,6 +59,8 @@ export default { | ||
58 | console.log(this.$utils.clientBrowsePayType()) | 59 | console.log(this.$utils.clientBrowsePayType()) |
59 | if(this.$utils.clientBrowsePayType() == 5){ | 60 | if(this.$utils.clientBrowsePayType() == 5){ |
60 | window.location.href = 'https://park.ijiangyin.com?carNumber='+this.carNumber+'&carType='+this.$route.query.carType+'&carNumberColor='+this.$route.query.carNumberColor+'&orgId='+this.$route.query.orgId+'&codeType='+this.$route.query.codeType | 61 | window.location.href = 'https://park.ijiangyin.com?carNumber='+this.carNumber+'&carType='+this.$route.query.carType+'&carNumberColor='+this.$route.query.carNumberColor+'&orgId='+this.$route.query.orgId+'&codeType='+this.$route.query.codeType |
62 | + }else { | ||
63 | + this.showCon = true | ||
61 | } | 64 | } |
62 | 65 | ||
63 | 66 |