21 lines
917 B
Plaintext
21 lines
917 B
Plaintext
<view class="container">
|
|
|
|
<view class="mt20 pl30 pr30">
|
|
<view class="mb20 font-28" wx:if="{{total>0}}">共<text class="pl5 pr5 color-f9394d">{{total}}</text>个</view>
|
|
<block wx:for='{{list}}' wx:key='index'>
|
|
<view class="inner40 relative ulib-r10 box-shadow-000-10-10 mb30 overflowhidden" bindtap="pushLink" data-url="/pages/clues/detail/index?id={{item.id}}&optDefeat=true">
|
|
<view class="relative pr180">
|
|
<view>
|
|
<text class="font-32">{{item.name}}</text>
|
|
<text class="font-28 color-666">({{item.mobile}})</text>
|
|
</view>
|
|
<view class="absolute right-0 box-middle font-24 color-666">详细信息<text class="iconfont icon-gengduo ml10"></text></view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
<lcb-listmore isLoading='{{loading}}' isEnd='{{end}}' isNoData='{{noData}}'></lcb-listmore>
|
|
</view>
|
|
|
|
</view>
|
|
<lcb-footer></lcb-footer>
|
|
<lcb-backChannel></lcb-backChannel> |