1234567891011121314151617181920212223242526272829 |
- <!--components/page-scroll/page-scroll.wxml-->
- <view
- class="swc_scroll {{className}}"
- style="{{styleSheet}}">
- <view
- class="page_info"
- style="height:{{height}}rpx; {{height?'':'transition:height 0.5s;'}}">
- <view class="page_info_t">
- 本网页由m.dyhc.com提供
- </view>
- </view>
- <scroll-view
- class="{{className}}"
- style="{{styleSheet}}"
- scroll-y="{{height==0}}"
- bindscroll="scroll"
- bindscrolltolower="scrollLower"
- bindscrolltoupper="scrollUpper"
- upper-threshold="0"
- scroll-top="{{scrollto}}"
- >
- <view
- bindtouchmove="{{upper?'changeHeight':''}}"
- bindtouchend="endChange"
- >
- <slot></slot>
- </view>
- </scroll-view>
- </view>
|