page-scroll.wxml 609 B

1234567891011121314151617181920
  1. <import src="../../../common/head.wxml" />
  2. <import src="../../../common/foot.wxml" />
  3. <view class="container page" data-weui-theme="{{theme}}">
  4. <template is="head" data="{{title: 'pageScrollTo'}}"/>
  5. <view class="page-body">
  6. <view class="page-section">
  7. <view class="btn-area">
  8. <button type="primary" bindtap="scrollToBottom">滚动到页面底部</button>
  9. </view>
  10. <view class="filling-area"></view>
  11. <view class="btn-area">
  12. <button type="primary" bindtap="scrollToTop">返回顶部</button>
  13. </view>
  14. </view>
  15. </view>
  16. <template is="foot" />
  17. </view>