tabbar.wxml 1.5 KB

1234567891011121314151617181920212223242526
  1. <template name="tabbar">
  2. <i-fixed-bottom>
  3. <view class="tabbar-box py10 i-flex text-center shadow-top fsz-24 {{isIpx?'pb20':''}}">
  4. <navigator class="tabbar i-flex-item {{data==2?'active':''}}" hover-class="none" url="/lionfish_comshop/moduleB/supply/index" open-type="redirect">
  5. <text class="iconfont icon-shouye"></text>
  6. <view class="mt5">管理首页</view>
  7. </navigator>
  8. <navigator class="tabbar i-flex-item {{data==0?'active':''}}" hover-class="none" url="/lionfish_comshop/moduleB/supply/goodsManage" open-type="redirect">
  9. <text class="iconfont icon-goods-manage"></text>
  10. <view class="mt5">商品管理</view>
  11. </navigator>
  12. <navigator class="tabbar i-flex-item {{data==1?'active':''}}" hover-class="none" url="/lionfish_comshop/moduleB/supply/orderManage" open-type="redirect">
  13. <text class="iconfont icon-order-manage"></text>
  14. <view class="mt5">订单管理</view>
  15. </navigator>
  16. <!-- <navigator class="tabbar i-flex-item {{data==3?'active':''}}" hover-class="none" url="" open-type="redirect">
  17. <text class="iconfont icon-refund-manage"></text>
  18. <view class="mt5">售后管理</view>
  19. </navigator> -->
  20. <navigator class="tabbar i-flex-item {{data==4?'active':''}}" hover-class="none" url="/lionfish_comshop/moduleB/supply/moneyManage" open-type="redirect">
  21. <text class="iconfont icon-money-manage"></text>
  22. <view class="mt5">资金管理</view>
  23. </navigator>
  24. </view>
  25. </i-fixed-bottom>
  26. </template>