scrollView.wxml 707 B

12345678910111213141516171819
  1. <!--myComponents/scrollView/scrollView.wxml-->
  2. <scroll-view type="list" scroll-y="true"
  3. class="scroll-view-class"
  4. refresher-enabled="{{true}}"
  5. refresher-threshold="{{threshold}}"
  6. refresher-default-style="white"
  7. refresher-background="rgb(211, 234, 248)"
  8. refresher-triggered="{{triggered}}"
  9. bindrefresherrefresh="onRefresh"
  10. bindscrolltolower="loadMore"
  11. style="{{customStyle}}">
  12. <slot></slot>
  13. </scroll-view>
  14. <view class="text" wx:if="{{hasMore && load}}">
  15. <image class="img" src="/static/image/loading.gif" mode="aspectFit"/>
  16. 加载中...
  17. </view>
  18. <view class="text" wx:elif="{{(!hasMore && load) || show}}">没有更多了</view>