拓恒河湖长制全民护河平台WEB端
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.

11 lines
486B

  1. <!--components/List/index.wxml-->
  2. <scroll-view class="list {{list.length>0?'':'min-height'}}" scroll-y="{{scrolling}}" bindscrolltolower="loadMore" lower-threshold="80">
  3. <slot></slot>
  4. <view class="empty" wx:if="{{!loading && list.length==0}}">
  5. <image class="image" src="/assets/img/empty.png" mode="aspectFit" lazy-load="false">
  6. </image>
  7. <view class="empty-text" wx:if="{{emptyText}}">
  8. {{emptyText}}
  9. </view>
  10. </view>
  11. </scroll-view>