You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bocai_supplyChain/pages/underReview/index.wxml

20 lines
1.2 KiB
Plaintext

<view class="mainlist">
<view wx:for="{{billList}}" wx:key="index" class="subset" hover-class="none" hover-stop-propagation="false" mark:id="{{item.id}}" bindtap='toDetail'>
<!-- <navigator class="" target="" url="./bill-detail/bill-detail" hover-class="navigator-hover" open-type="navigate"> -->
<view class="userinfo">
<view class="icon">
<image class="" src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/dh1.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload="" wx:if="{{item.tel}}"></image>
<image class="" src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/dh.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload="" wx:else></image>
</view>
<view class="user">
<text class="username">{{item.userName}}</text>
<text class="phone">{{item.tel ? item.tel : ''}}</text>
<view class="usertype">{{item.statusText ? item.statusText : '-'}}</view>
</view>
</view>
<view class="date">{{item.updateTimeStr}}</view>
<!-- </navigator> -->
</view>
</view>
<view class="noData" hover-class="none" hover-stop-propagation="false" wx:if='{{ billList.length <= 0 }}'>暂无更多数据</view>