C端小程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

112 řádky
4.5 KiB

  1. <view class='container'>
  2. <view class='carmanage clearfix'>
  3. <view class='fl'>
  4. <image src='./../../assets/img/che.png' mode='widthFix'></image>
  5. <text class='mycar'>我的爱车</text>
  6. <text class='num'>最多可添加3辆</text>
  7. </view>
  8. <view class='fr' bindtap='gotomange'>
  9. 车辆管理
  10. <image src='./../../assets/img/jian.png' mode='widthFix'></image>
  11. </view>
  12. </view>
  13. <view class='headBox'>
  14. <view class='numberBox'>
  15. <view class='titleName clearfix'>{{park.addr}}</view>
  16. <view class='price clearfix'>
  17. <text class='fl'>总车位:</text>
  18. <label class='locationNumber fr'>{{park.number}}个</label>
  19. </view>
  20. <view class='price clearfix'>
  21. <text class='fl'>停车费:</text>
  22. <label class='locationNumber fr'>{{park.stopFee}}</label>
  23. </view>
  24. </view>
  25. </view>
  26. <view class='borderBox'>
  27. <view class='passNumberBox' wx:for='{{carList}}' wx:key='{{index}}'>
  28. <!-- 有车牌的时候显示 -->
  29. <view class='passUp'>
  30. <view class='addicense_active'>
  31. <swiper current="{{current}}" bindchange='onSlideChangeEnd' class='swiper' circular='true' indicator-dots='{{indicatorDots}}' autoplay='{{autoplay}}' interval='2000' duration='2000'>
  32. <block wx:for="{{carList}}" wx:key="unique">
  33. <swiper-item class="swiper-item" data-memberKeyword='{{item.carNumber}}'>
  34. <view class='clearfix clearfix1'>
  35. <text class='txt01'>{{item.carNumber}}</text>
  36. </view>
  37. </swiper-item>
  38. </block>
  39. </swiper>
  40. <view class="dots">
  41. <block wx:for="{{carList}}" wx:key="unique">
  42. <view class="dot{{index == current ? ' active' : ''}}"></view>
  43. </block>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. <!-- <view class='orderBox clearfix' wx:if='{{item.stopFee.parkingFee}}'> -->
  50. <view class='orderBox' wx:key="{{index}}" wx:for="{{carList}}" wx:if="{{carList.length>0&&3>=carList.length}}">
  51. <view class='clearfix'>
  52. <text class="fl">入场时间:</text>
  53. <text class='fr time'>{{item.stopFee.entranceTime}}</text>
  54. </view>
  55. <view class='coupon clearfix'>
  56. <text class='fl'><text class='jians'>惠</text>优免券:</text>
  57. <text class='fr'>2小时优免券</text>
  58. </view>
  59. <view class="clearfix">
  60. <text class="fl">待缴费用:</text>
  61. <text class='fr'>{{item.stopFee.parkingFee}}<text class='yuan'>元</text></text>
  62. </view>
  63. <view bindtap='bindCoupon' class="buy-view" wx:if="{{buttonBox&&carList.length>0&&3>=carList.length}}">
  64. <navigator class='buyBox' target="miniProgram" open-type="navigate" app-id="wx192b7d2e8dcbefd0" path="" extra-data='{{extraData}}' version="release">
  65. </navigator>
  66. <button class='buy' hover-class='active'>立即支付</button>
  67. </view>
  68. </view>
  69. <!-- 没有车牌的时候显示 -->
  70. <view class='borderUp' bindtap='jumpToAdd' wx:if="{{carList.length==0}}">
  71. <view class="myCars">
  72. <image src='./../../assets/img/add.png' mode="widthFix"></image>我的爱车</view>
  73. <text class='carNumber'>车辆入场后,才能绑车牌</text>
  74. </view>
  75. <view class='bottonBox'>
  76. <navigator url="/pages/passCar/couponList/couponList">
  77. <view class='textStyle' bindtap='showquan'>
  78. <image src='../../assets/img/quan.png'></image>
  79. 我的停车券
  80. <view class='detail'>
  81. <image src='../../assets/img/jian.png'></image>
  82. </view>
  83. </view>
  84. </navigator>
  85. <view class='textStyle' bindtap='passc'>
  86. <image src='../../assets/img/wenti.png'></image>
  87. 常见问题
  88. <view class='detail'>
  89. <image src='../../assets/img/jian.png'></image>
  90. </view>
  91. </view>
  92. </view>
  93. <view class='passNumberBox' wx:for='{{couponList}}' wx:key='{{index}}'>
  94. <view class='voucher' wx:if="!{{tcq==1}}">
  95. <text class='textV1 textV3'>{{item.title}}</text>
  96. <text class='textV2'>{{item.merchantName}}</text>
  97. <text class='textV1'>{{'- '+item.price/100+'小时'}}</text>
  98. <view class='choice'>
  99. <image src='../../assets/img/choiced.png'></image>
  100. </view>
  101. </view>
  102. </view>
  103. <!-- <view bindtap='bindCoupon' class="buy-view app-border-top" wx:if="{{buttonBox}}">
  104. <navigator wx:if="{{flag==1||flags=='alreadybind'}}" class='buyBox' target="miniProgram" open-type="navigate" app-id="wx192b7d2e8dcbefd0" path="" extra-data='{{extraData}}' version="trial">
  105. </navigator>
  106. <button class='buy'>立即支付</button>
  107. </view> -->
  108. </view>