yiming
2024-03-13 f9d4b09377c5471e1202be2fef2c89de27b6654d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<view
  class="load-more wr-class"
  style="{{listIsEmpty && (status === 0 || status === 2) ? 'display: none' : '' }}"
  bindtap="tapHandle"
>
  <!-- 加载中 -->
 
  <t-loading
    t-class="t-class-loading"
    t-class-text="t-class-loading-text"
    t-class-indicator="t-class-indicator"
    loading="{{status === 1}}"
    text="加载中..."
    theme="circular"
    size="40rpx"
  />
 
  <!-- 已全部加载 -->
  <t-divider wx:if="{{status === 2}}" t-class="t-class-divider" t-class-content="t-class-divider-content">
    <text slot="content">{{noMoreText}}</text>
  </t-divider>
 
  <!-- 加载失败 -->
  <view class="load-more__error" wx:if="{{status===3}}">
    加载失败
    <text class="load-more__refresh-btn" bind:tap="tapHandle">刷新</text>
  </view>
</view>
 
<!-- 支持通过slot传入页面/列表的空态,load-more来控制空态的显示状态 -->
<slot wx:if="{{listIsEmpty && (status === 0 || status === 2)}}" name="empty" />