unleasedPages.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <view class="unleased-pages-main">
  3. <!-- <navBar type="index"/> -->
  4. <!-- #ifdef MP-WEIXIN -->
  5. <view :style="{height: `${statusBarHeight + 30}px`}"></view>
  6. <!-- #endif -->
  7. <!-- #ifdef APP -->
  8. <view :style="{height: `${statusBarHeight}px`}"></view>
  9. <!-- #endif -->
  10. <view v-if="!isShow">
  11. <view style="margin: 0 50rpx 0rpx;height: 420rpx;">
  12. <u-swiper v-if="img_list.length!=0" :list="img_list" @change="tapSwiper" :autoplay="false" mode="none"
  13. :height="420" bgColor="transparent" class="custom-swiper">
  14. </u-swiper>
  15. </view>
  16. <view class="car-model-step">
  17. <view style="padding-top: 80rpx;margin-bottom: 60rpx;">
  18. <view class="recommend-car-name w_100 text-center">{{moder_info.model_name}}</view>
  19. <view class="recommend-car-tip w_100 text-center line2">{{moder_info.title||'续航开新路 路遥见实力'}}</view>
  20. <!-- <view class="car-speed-view">
  21. <view class="car-speed">72 <text class="company">km</text></view>
  22. <text>全速续航</text>
  23. </view> -->
  24. <!-- <view class="car-speed-view">
  25. <view class="car-speed">52 <text class="company">km/h</text></view>
  26. <text>极速可达</text>
  27. </view> -->
  28. </view>
  29. <view class="flex-row" @tap="navCarDetail" style="justify-content: center;">
  30. <view class="more-btn flex-row">
  31. <view class="more-btn-text">了解更多</view>
  32. <img class="more-btn-img" src="https://qiniu.bms16.com/Fi2Lg800Mc1MhCnvHT1DkvOEdJB1" alt="">
  33. </view>
  34. </view>
  35. <view class="flex-row dot-view">
  36. <view v-for="(item,index) in img_list" :key="index" :class="['dot', { active: index === current }]">
  37. </view>
  38. </view>
  39. <view class="flex-row flex-around">
  40. <view @tap="navCarDetail" class="lease-btn">租赁设备</view>
  41. <view class="binding-btn">绑定设备</view>
  42. </view>
  43. </view>
  44. </view>
  45. <view v-else>
  46. <view style="margin: 0 50rpx 0rpx;height: 420rpx;">
  47. <u-swiper :list="['https://qiniu.bms16.com/Fqf6jeV9PQGeHXkXMHOi_jlPsTme']" :autoplay="false" mode="none"
  48. :height="420" bgColor="transparent" class="custom-swiper">
  49. </u-swiper>
  50. </view>
  51. <view class="car-model-step">
  52. <view style="padding-top: 80rpx;margin-bottom: 60rpx;">
  53. <view class="recommend-car-name w_100 text-center">全新车型,即将发布!</view>
  54. <view class="recommend-car-tip w_100 text-center line2">更智能、更高效,全新车型即将亮相,敬请期待!</view>
  55. <!-- <view class="car-speed-view">
  56. <view class="car-speed">72 <text class="company">km</text></view>
  57. <text>全速续航</text>
  58. </view> -->
  59. <!-- <view class="car-speed-view">
  60. <view class="car-speed">52 <text class="company">km/h</text></view>
  61. <text>极速可达</text>
  62. </view> -->
  63. </view>
  64. <view class="flex-row" @tap="navCarDetail" style="justify-content: center;">
  65. <view class="more-btn flex-row">
  66. <view class="more-btn-text">了解更多</view>
  67. <img class="more-btn-img" src="https://qiniu.bms16.com/Fi2Lg800Mc1MhCnvHT1DkvOEdJB1" alt="">
  68. </view>
  69. </view>
  70. <view class="flex-row flex-around">
  71. <view @tap="navCarDetail" class="lease-btn">租赁设备</view>
  72. <view class="binding-btn">绑定设备</view>
  73. </view>
  74. </view>
  75. </view>
  76. </view>
  77. </template>
  78. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  79. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  80. <script>
  81. const config = require('@/common/config.js');
  82. const common = require('@/common/common.js');
  83. const http = require('@/common/http.js');
  84. const storage = require('@/common/storage.js');
  85. export default {
  86. props: {
  87. model_list: {
  88. type: Array,
  89. default: []
  90. },
  91. img_list: {
  92. type: Array,
  93. default: []
  94. },
  95. },
  96. data() {
  97. return {
  98. isShow:false,
  99. current: 0,
  100. model_id: '', //租赁设备编号
  101. moder_info: {},
  102. statusBarHeight: 0
  103. };
  104. },
  105. mounted() {
  106. this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
  107. }
  108. /**
  109. * 生命周期函数--监听页面加载
  110. */
  111. ,
  112. watch: {
  113. model_list(newVal) {
  114. console.log("子组件 props 更新:", newVal);
  115. if (newVal.length > 0) {
  116. this.isShow = true
  117. if (newVal[0]) {
  118. this.moder_info = newVal[0]
  119. this.model_id = newVal[0].model_id
  120. }
  121. }else{
  122. this.moder_info = {}
  123. this.model_id = 0
  124. this.isShow = false
  125. }
  126. }
  127. },
  128. methods: {
  129. tapSwiper(e) {
  130. this.setData({
  131. current: e,
  132. moder_info: this.model_list[e],
  133. model_id: this.model_list[e].model_id
  134. })
  135. },
  136. navCarDetail() {
  137. const me = this
  138. uni.navigateTo({
  139. url: '/pages/carDetail/carDetail?model_id=' + me.model_id
  140. })
  141. }
  142. }
  143. };
  144. </script>
  145. <style>
  146. @import './unleasedPages.css';
  147. </style>