navigator.wxml 652 B

123456789101112131415161718
  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: 'navigateTo/Back, redirectTo'}}"/>
  5. <view class="page-body">
  6. <view class="btn-area">
  7. <button bindtap="navigateTo">跳转新页面</button>
  8. <button bindtap="navigateBack">返回上一页</button>
  9. <button bindtap="redirectTo">在当前页面打开</button>
  10. <button bindtap="switchTab">跳转到组件Tab页</button>
  11. <button bindtap="reLaunch">关闭所有页面并跳转</button>
  12. </view>
  13. </view>
  14. <template is="foot" />
  15. </view>