unleasedPages.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <view class="unleased-pages-main">
  3. <navBar type="index"/>
  4. <view class="recommend-car-name w_100 text-center">{{moder_info.model_name}}</view>
  5. <view class="recommend-car-tip w_100 text-center">{{moder_info.title||'续航开新路 路遥见实力'}}</view>
  6. <view >
  7. <view style="margin: 0 50rpx 0rpx;height: 420rpx;">
  8. <u-swiper
  9. v-if="img_list.length!=0"
  10. :list="img_list"
  11. @change="tapSwiper"
  12. :autoplay="false"
  13. mode="none"
  14. :height="420"
  15. bgColor="transparent"
  16. class="custom-swiper"
  17. >
  18. </u-swiper>
  19. </view>
  20. <view class="car-model-step">
  21. <view class="flex-row flex-around" style="padding-top: 80rpx;margin-bottom: 60rpx;">
  22. <!-- <view class="car-speed-view">
  23. <view class="car-speed">72 <text class="company">km</text></view>
  24. <text>全速续航</text>
  25. </view>
  26. <view class="car-speed-view">
  27. <view class="car-speed">52 <text class="company">km/h</text></view>
  28. <text>极速可达</text>
  29. </view> -->
  30. </view>
  31. <view class="flex-row" @tap="navCarDetail" style="justify-content: center;" >
  32. <view class="more-btn flex-row">
  33. <view class="more-btn-text">了解更多</view>
  34. <img class="more-btn-img" src="https://qiniu.bms16.com/Fi2Lg800Mc1MhCnvHT1DkvOEdJB1" alt="">
  35. </view>
  36. </view>
  37. <view class="flex-row dot-view" >
  38. <view v-for="(item,index) in img_list" :key="index" :class="['dot', { active: index === current }]"></view>
  39. </view>
  40. <view class="flex-row flex-around" >
  41. <view @tap="navCarDetail" class="lease-btn">租赁设备</view>
  42. <view class="binding-btn">绑定设备</view>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. </template>
  48. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  49. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  50. <script>
  51. const config = require('@/common/config.js');
  52. const common = require('@/common/common.js');
  53. const http = require('@/common/http.js');
  54. const storage = require('@/common/storage.js');
  55. export default {
  56. props: {
  57. model_list: {
  58. type: Array,
  59. default: []
  60. },
  61. img_list: {
  62. type: Array,
  63. default: []
  64. },
  65. },
  66. data() {
  67. return {
  68. current: 0,
  69. model_id:'',//租赁设备编号
  70. moder_info:{},
  71. statusBarHeight:0
  72. };
  73. }
  74. /**
  75. * 生命周期函数--监听页面加载
  76. */
  77. ,
  78. watch: {
  79. model_list(newVal) {
  80. console.log("子组件 props 更新:", newVal);
  81. if(newVal[0]){
  82. this.moder_info=newVal[0]
  83. this.model_id=newVal[0].model_id
  84. }
  85. }
  86. },
  87. methods: {
  88. tapSwiper(e){
  89. this.setData({
  90. current:e,
  91. moder_info:this.model_list[e],
  92. model_id:this.model_list[e].model_id
  93. })
  94. },
  95. navCarDetail(){
  96. const me=this
  97. uni.navigateTo({
  98. url: '/pages/carDetail/carDetail?model_id=' + me.model_id
  99. })
  100. }
  101. }
  102. };
  103. </script>
  104. <style>
  105. @import './unleasedPages.css';
  106. </style>