Commit f99765832c423fe4c9b9cbf02a029e2e4ccb99cc

Authored by 刘淇
1 parent a8afa949

跳转 最江阴app

Showing 1 changed file with 4 additions and 1 deletions
src/components/navigation.vue
1 1 <template>
2   - <div>
  2 + <div v-show="showCon">
3 3 <div style="height: 206px;">
4 4 <div class="swiper-container">
5 5 <div class="swiper-wrapper">
... ... @@ -49,6 +49,7 @@ export default {
49 49 carNumber: '', // 车牌号码
50 50 carWrapBG: 0,// 车牌颜色
51 51 swiperData: [], // 轮播数据
  52 + showCon:false,
52 53 }
53 54 },
54 55 mounted() {
... ... @@ -58,6 +59,8 @@ export default {
58 59 console.log(this.$utils.clientBrowsePayType())
59 60 if(this.$utils.clientBrowsePayType() == 5){
60 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  
... ...