纸通宝小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

25 lines
1.3 KiB

<!--pages/agent/vehicles/index.wxml-->
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content" style="color:black;font-size:36rpx">历史车辆</view>
</cu-custom>
<scroll-view scroll-y style="height: {{height}}rpx">
<view class="bg-white list-empty" style="height:{{height}}rpx" wx:if="{{!plateList.length}}">
<view class="load-spinner text-gray" style="margin-bottom:24px" wx:if="{{loading}}" />
<image class="img-empty" src="/assets/image/list_empty.png" wx:else></image>
<view class="text-empty">{{loading? '正在加载' : '暂无数据'}}</view>
</view>
<wux-cell-group wx:else>
<wux-cell wx:for="{{plateList}}" wx:key="index" data-index="{{index}}" bind:click="selectItem">
<view slot="header">
<view class="text-sg text-black text-bold" style="line-height:30rpx;">{{item.plateNumber}}</view>
<view class="flex" style="margin-top:18rpx">
<view class="text-sg text-gray" style="line-height: 30rpx;width:150rpx">{{item.driverName}}</view>
<view class="text-sg text-gray" style="line-height: 30rpx;">{{item.driverPhone}}</view>
</view>
</view>
<wux-button slot="footer" outline type="assertive" size="small" data-index="{{index}}" bind:click="deleteItem">删除
</wux-button>
</wux-cell>
</wux-cell-group>
</scroll-view>