C端小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

26 rader
1.1 KiB

  1. <navbar back home text="车辆管理"></navbar>
  2. <view class='title' style="padding-top:{{navigationBarHeight}};">30天内最多绑定4次车牌<text class='rem'>解绑前请确认车已经离场</text></view>
  3. <!-- 车牌 -->
  4. <!-- 有车牌的时候显示 -->
  5. <view class='passUp'>
  6. <view class='addicense_active'>
  7. <block wx:for="{{carList}}" wx:key="unique">
  8. <view class="swiper-item" data-memberKeyword='{{item.carNumber}}'>
  9. <view class='clearfix'>
  10. <text class='txt01'>{{item.carNumber}}</text>
  11. <view class='tche' hover-class='button_active' bindtap='gotopay'>
  12. <button class='btn001' bindtap='unbindCarBtn' data-car='{{item.carNumber}}'>解绑</button>
  13. </view>
  14. </view>
  15. </view>
  16. </block>
  17. </view>
  18. </view>
  19. <!-- 没有车牌的时候显示 -->
  20. <view class='borderUp' hover-class='active' bindtap='jumpToAdd' bindtap='jumpToAdd' wx:if="{{carList.length>=0&&3>=carList.length}}">
  21. <view class="myCars">
  22. <!-- <image src='{{addUrl}}' mode="widthFix"></image> -->
  23. 添加车牌
  24. </view>
  25. <text class='carNumber'>车辆入场后,才能绑车牌</text>
  26. </view>