navigator.wxml 854 B

12345678910111213141516171819202122
  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: 'navigator'}}"/>
  5. <view class="page-body">
  6. <view class="btn-area">
  7. <navigator url="navigate?title=navigate" hover-class="ohter-navigator">
  8. <button type="default">跳转到新页面</button>
  9. </navigator>
  10. <navigator url="redirect?title=redirect" redirect hover-class="other-navigator-hover">
  11. <button type="default">在当前页打开</button>
  12. </navigator>
  13. <navigator target="miniProgram" hover-class="other-navigator-hover" open-type="navigate" app-id="wx4f1b24bdc99fa23b" version="release">
  14. <button type="default">打开小程序</button>
  15. </navigator>
  16. </view>
  17. </view>
  18. <template is="foot" />
  19. </view>