pull-down-refresh.wxml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <wxs src="../common/utils.wxs" module="_" />
  2. <scroll-view
  3. style="{{_._style([style, customStyle])}}"
  4. class="{{classPrefix}} {{prefix}}-class"
  5. scroll-top="{{scrollTop}}"
  6. bind:touchstart="onTouchStart"
  7. bind:touchmove="onTouchMove"
  8. bind:touchend="onTouchEnd"
  9. bind:scroll="onScroll"
  10. bindscrolltoupper="onScrollToTop"
  11. bindscrolltolower="onScrollToBottom"
  12. scroll-y
  13. enable-back-to-top
  14. enhanced
  15. scroll-with-animation
  16. bounces="{{false}}"
  17. >
  18. <view
  19. class="{{classPrefix}}__track {{classPrefix + '__track--' + (loosing ? 'loosing' : '')}}"
  20. style="{{barHeight > 0 ? 'transform: translate3d(0, ' + barHeight + 'rpx, 0);' : ''}}"
  21. >
  22. <view class="{{classPrefix}}__tips" style="height: {{computedLoadingBarHeight}}rpx">
  23. <t-loading
  24. wx:if="{{refreshStatus === 2}}"
  25. delay="{{loadingProps.delay || 0}}"
  26. duration="{{loadingProps.duration || 800}}"
  27. indicator="{{loadingProps.indicator || true}}"
  28. layout="{{loadingProps.layout || 'horizontal'}}"
  29. loading="{{loadingProps.loading || true}}"
  30. pause="{{loadingProps.pause || false}}"
  31. progress="{{loadingProps.progress || 0}}"
  32. reverse="{{loadingProps.reverse || false}}"
  33. size="{{loadingProps.size || '50rpx'}}"
  34. text="{{loadingProps.text || loadingTexts[refreshStatus]}}"
  35. theme="{{loadingProps.theme || 'circular'}}"
  36. t-class-indicator="{{prefix}}-class-indicator"
  37. />
  38. <view wx:elif="{{refreshStatus >= 0}}" class="{{classPrefix}}__text {{prefix}}-class-text"
  39. >{{loadingTexts[refreshStatus]}}</view
  40. >
  41. </view>
  42. <slot />
  43. </view>
  44. </scroll-view>