swc-scroll.wxml 685 B

1234567891011121314151617181920212223242526272829
  1. <!--components/page-scroll/page-scroll.wxml-->
  2. <view
  3. class="swc_scroll {{className}}"
  4. style="{{styleSheet}}">
  5. <view
  6. class="page_info"
  7. style="height:{{height}}rpx; {{height?'':'transition:height 0.5s;'}}">
  8. <view class="page_info_t">
  9. 本网页由m.dyhc.com提供
  10. </view>
  11. </view>
  12. <scroll-view
  13. class="{{className}}"
  14. style="{{styleSheet}}"
  15. scroll-y="{{height==0}}"
  16. bindscroll="scroll"
  17. bindscrolltolower="scrollLower"
  18. bindscrolltoupper="scrollUpper"
  19. upper-threshold="0"
  20. scroll-top="{{scrollto}}"
  21. >
  22. <view
  23. bindtouchmove="{{upper?'changeHeight':''}}"
  24. bindtouchend="endChange"
  25. >
  26. <slot></slot>
  27. </view>
  28. </scroll-view>
  29. </view>