home.wxml 530 B

12345678910111213
  1. <!--pages/home/home.wxml-->
  2. <text>pages/home/home.wxml</text>
  3. <navigator url="/pages/message/message" open-type="switchTab">导航到消息页面</navigator>
  4. <navigator url="/pages/info/info" open-type="navigate">导航到info页面</navigator>
  5. <button bindtap="gotoMessage">跳转到message页面</button>
  6. <button bindtap="gotoInfo">跳转到info页面</button>
  7. <navigator url="/pages/info/info?name=zs&age=20">跳转到info页面</navigator>
  8. <button bindtap="gotoInfo2">跳转到info页面</button>
  9. <view class="box"></view>