index.wxml 394 B

123456789101112131415
  1. <view id="mylisttop" />
  2. <scroll-view class="scroll-view"
  3. scroll-y
  4. refresher-enabled='{{pullDown}}'
  5. refresher-triggered='{{inRefresh}}'
  6. style="height: {{height}}px;"
  7. triggered='{{true}}'
  8. bindrefresherrefresh='pullToRefresh'
  9. lower-threshold='300'
  10. bindscrolltolower='loadThePage'
  11. >
  12. <slot />
  13. <view class="safety" wx:if="{{safety}}" />
  14. </scroll-view>