unleasedPages.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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 || $t('续航开新路') + $t('路遥见实力')}}</view>
  20. <!-- <view class="car-speed-view">
  21. <view class="car-speed">72 <text class="company">km</text></view>
  22. <text>{{ $t('全速续航') }}</text>
  23. </view> -->
  24. <!-- <view class="car-speed-view">
  25. <view class="car-speed">52 <text class="company">km/h</text></view>
  26. <text>{{ $t('极速可达') }}</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">{{ $t('了解更多') }}</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">{{ $t('租赁设备') }}</view>
  41. <view class="binding-btn">{{ $t('绑定设备') }}</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">{{ $t('全新车型,即将发布!') }}</view>
  54. <view class="recommend-car-tip w_100 text-center line2">{{ $t('更智能、更高效,全新车型即将亮相,敬请期待!') }}</view>
  55. <!-- <view class="car-speed-view">
  56. <view class="car-speed">72 <text class="company">km</text></view>
  57. <text>{{ $t('全速续航') }}</text>
  58. </view> -->
  59. <!-- <view class="car-speed-view">
  60. <view class="car-speed">52 <text class="company">km/h</text></view>
  61. <text>{{ $t('极速可达') }}</text>
  62. </view> -->
  63. </view>
  64. <view class="flex-row" @tap="navCarDetail1" style="justify-content: center;">
  65. <view class="more-btn flex-row">
  66. <view class="more-btn-text">{{ $t('了解更多') }}</view>
  67. <img class="more-btn-img" src="https://qiniu.bms16.com/Fi2Lg800Mc1MhCnvHT1DkvOEdJB1" alt="">
  68. </view>
  69. </view>
  70. <view style="height: 160rpx;"></view>
  71. <view class="flex-row flex-around">
  72. <view @tap="navCarDetail1" class="lease-btn">{{ $t('租赁设备') }}</view>
  73. <view class="binding-btn">{{ $t('绑定设备') }}</view>
  74. </view>
  75. </view>
  76. </view>
  77. </view>
  78. </template>
  79. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  80. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  81. <script>
  82. const config = require('@/common/config.js');
  83. const common = require('@/common/common.js');
  84. const http = require('@/common/http.js');
  85. const storage = require('@/common/storage.js');
  86. export default {
  87. props: {
  88. model_list: {
  89. type: Array,
  90. default: []
  91. },
  92. img_list: {
  93. type: Array,
  94. default: []
  95. },
  96. },
  97. data() {
  98. return {
  99. isShow:false,
  100. current: 0,
  101. model_id: '', //租赁设备编号
  102. moder_info: {},
  103. statusBarHeight: 0
  104. };
  105. },
  106. mounted() {
  107. this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
  108. }
  109. /**
  110. * 生命周期函数--监听页面加载
  111. */
  112. ,
  113. watch: {
  114. model_list(newVal) {
  115. console.log("子组件 props 更新:", newVal);
  116. if (newVal.length > 0) {
  117. this.isShow = true
  118. if (newVal[0]) {
  119. this.moder_info = newVal[0]
  120. this.model_id = newVal[0].model_id
  121. }
  122. }else{
  123. this.moder_info = {}
  124. this.model_id = 0
  125. this.isShow = false
  126. }
  127. }
  128. },
  129. methods: {
  130. tapSwiper(e) {
  131. this.setData({
  132. current: e,
  133. moder_info: this.model_list[e],
  134. model_id: this.model_list[e].model_id
  135. })
  136. },
  137. navCarDetail1(){
  138. uni.switchTab({
  139. url:"/pages/service/service"
  140. });
  141. },
  142. navCarDetail() {
  143. const me = this
  144. uni.navigateTo({
  145. url: '/pages/carDetail/carDetail?model_id=' + me.model_id
  146. })
  147. }
  148. }
  149. };
  150. </script>
  151. <style>
  152. @import './unleasedPages.css';
  153. </style>