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.
43 lines
1.4 KiB
43 lines
1.4 KiB
<!--components/list/list.wxml-->
|
|
<scroll-view
|
|
scroll-y='{{!refresh && !triggered && list_total > 0}}'
|
|
scroll-with-animation
|
|
refresher-enabled
|
|
refresher-default-style="black"
|
|
refresher-background="#fff"
|
|
refresher-triggered="{{triggered}}"
|
|
bindrefresherpulling="onPulling"
|
|
bindrefresherrefresh="onRefresh"
|
|
bindrefresherrestore="onRestore"
|
|
bindrefresherabort="onAbort"
|
|
bindscrolltolower='onScrolltolower'
|
|
bindscroll="nobindscroll"
|
|
binddragstart="nobinddragstart"
|
|
binddragend="nobinddragend"
|
|
>
|
|
<!-- 下拉刷新 -->
|
|
<!-- <block wx:if='{{ triggered || refresh }}'>
|
|
<view class="loading">
|
|
<image src="{{imageServerUrl}}common/loading.gif"></image>
|
|
<text>加载中···</text>
|
|
</view>
|
|
</block> -->
|
|
<!-- 数据列表 -->
|
|
<!-- <block wx:if='{{!triggered && !refresh}}'> -->
|
|
<block>
|
|
<slot></slot>
|
|
</block>
|
|
<!-- load 上拉加载 -->
|
|
<block wx:if="{{ load && list.length < list_total}}">
|
|
<view class="loading">
|
|
<image src="{{imageServerUrl}}common/loading.gif"></image>
|
|
<text>努力加载中···</text>
|
|
</view>
|
|
</block>
|
|
<!-- <view class="bottom_tip" wx:if='{{ list_total == list.length && list_total != 0 && list_total >= 3 && no_have}}'>
|
|
<text> 没有更多内容啦 ~ </text>
|
|
</view> -->
|
|
|
|
</scroll-view>
|
|
|
|
<view class="mask" wx:if="{{ refresh || load && !triggered}}"></view>
|