| <navbar back home text="车辆管理"></navbar>
<view style="height:{{navigationBarHeight}} "></view>
<view class='title' >30天内最多绑定4次车牌<text class='rem'>解绑前请确认车已经离场</text></view>
<!-- 车牌 -->
<!-- 有车牌的时候显示 -->
<view class='passUp'>
  <view class='addicense_active'>
    <block wx:for="{{carList}}" wx:key="unique">
      <view class="swiper-item" data-memberKeyword='{{item.carNumber}}'>
        <view class='clearfix'>
          <text class='txt01'>{{item.carNumber}}</text>
          <view class='tche' hover-class='button_active' bindtap='gotopay'>
            <button class='btn001' bindtap='unbindCarBtn' data-car='{{item.carNumber}}'>解绑</button>
          </view>
        </view>
      </view>
    </block>
  </view>
</view>
<!-- 没有车牌的时候显示 -->
<view class='borderUp' hover-class='active' bindtap='jumpToAdd' bindtap='jumpToAdd' wx:if="{{carList.length>=0&&3>=carList.length}}">
  <view class="myCars">
    <!-- <image src='{{addUrl}}' mode="widthFix"></image> -->
    添加车牌
  </view>
  <text class='carNumber'>车辆入场后,才能绑车牌</text>
</view>
 |