index.wxml 1.1 KB

123456789101112131415161718192021222324
  1. <view style="{{ style }}" bindtouchstart="bindtouchstart" bindtouchmove="bindtouchmove" bindtouchend="bindtouchend">
  2. <view class="{{ classes.wrap }}">
  3. <view class="{{ classes.content }}">
  4. <view class="{{ classes.iconPulling }}">
  5. <text class="{{ classes.pIcon }}"></text>
  6. </view>
  7. <view class="{{ classes.textPulling }}">{{ pullingText }}</view>
  8. <view class="{{ classes.iconRefreshing }}">
  9. <text class="{{ classes.rIcon }}"></text>
  10. </view>
  11. <view class="{{ classes.textRefreshing }}">{{ refreshingText }}</view>
  12. </view>
  13. </view>
  14. <slot></slot>
  15. <view class="{{ classes.lWrap }}">
  16. <view class="{{ classes.lContent }}">
  17. <text wx:if="{{noData === false}}" class="{{ classes.rIcon }}"></text>
  18. <text class="wux-loader__text-loading" wx:if="{{noData === false && isShowLoadingText === true}}">{{loadingText}}</text>
  19. <view wx:if="{{noData === true}}">
  20. {{loadNoDataText}}
  21. </view>
  22. </view>
  23. </view>
  24. </view>