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.

29 lines
1.5 KiB
Plaintext

2 years ago
<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="http://matripe.oss-cn-beijing.aliyuncs.com/nezha/dh1.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload="" wx:if="{{item.tel}}"></image>
<image class="" src="http://matripe.oss-cn-beijing.aliyuncs.com/nezha/dh.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload="" wx:else></image>
</view> -->
<view class="icon" wx:if='{{item.tel}}' catchtap='makePhoneCall' data-tel='{{item.tel}}'>
<view class="iconfont icon-shouji" style="color:var(--color-ysd)"></view>
</view>
<view class="icon noTel" wx:else>
<view class="iconfont icon-shouji c9"></view>
</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>