unleasedPages.vue 2.8 KB

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