<view wx:if="{{ show }}" class="load-more">
  <!-- laodmore line -->
  <view wx:if="{{ line }}" class="load-more--line"></view>
  <!-- laodmore loading -->
  <view wx:if="{{ status === 'loading' }}" class="load-more--loading rotate"></view>
  <view class="load-more--text loading-text-class" wx:if="{{ status === 'loading' }}"
    >{{ loadingText }}</view
  >
  <view class="load-more--text nomore-text-class" wx:if="{{ status === 'noMore' }}"
    >{{ noMoreText }}</view
  >
  <view class="load-more--text failed-text-class" wx:if="{{ status === 'failed' }}"
    >{{ failedText }}</view
  >
  <view wx:if="{{ line }}" class="load-more--line"></view>
</view>

<!-- 当status状态等于'empty'，load-more来控制空态的显示状态 -->
<slot wx:if="{{status === 'empty'}}" name="empty" />
