page-scroll.wxml 658 B

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