tabBar.wxml 838 B

123456789101112131415
  1. <!--myComponents/tabBar/tabBar.wxml-->
  2. <wux-tabbar defaultCurrent="{{current}}" position="bottom" bind:change="onChange">
  3. <wux-tabbar-item key="/pageIndex/index/index" title="主页">
  4. <view class="iconfont myIconzhuye" slot="icon-on"></view>
  5. <view class="iconfont myIconzhuye" slot="icon-off"></view>
  6. </wux-tabbar-item>
  7. <wux-tabbar-item key="/pages/logs/logs" title="爆品专利数据库">
  8. <view class="iconfont myIcondajiaduzaimai" slot="icon-on"></view>
  9. <view class="iconfont myIcondajiaduzaimai" slot="icon-off"></view>
  10. </wux-tabbar-item>
  11. <wux-tabbar-item key="/pageIndex/mine/mine" title="我的">
  12. <view class="iconfont myIconwode" slot="icon-on"></view>
  13. <view class="iconfont myIconwode" slot="icon-off"></view>
  14. </wux-tabbar-item>
  15. </wux-tabbar>