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.
22 lines
817 B
22 lines
817 B
<scroll-view
|
|
refresher-enabled refresher-default-style="black"
|
|
refresher-background="#fff" refresher-triggered="{{triggered}}"
|
|
bindrefresherrefresh="onRefresh"
|
|
bindscrolltolower='onScrolltolower'
|
|
scroll-y>
|
|
<block wx:if='{{showlist.length != 0}}'>
|
|
<block wx:for="{{showlist}}" wx:key='id'>
|
|
<block>
|
|
<buycar_card id="recruitment" buycar_card_data='{{item}}' is_my="my_collection"/>
|
|
</block>
|
|
</block>
|
|
</block>
|
|
<block wx:if="{{ showlist.length == 0 }}">
|
|
<!-- 未选择筛选条件无数据 -->
|
|
<no_data />
|
|
<!-- 已选择筛选条件无数据 -->
|
|
</block>
|
|
<view class="bottom_tip" wx:if="{{ showlist.length == list_total &&showlist.length>10}}">
|
|
<text> 没有更多内容啦 ~ </text>
|
|
</view>
|
|
</scroll-view>
|