1234567891011121314151617181920212223242526 |
- <template name="tabbar">
- <i-fixed-bottom>
- <view class="tabbar-box py10 i-flex text-center shadow-top fsz-24 {{isIpx?'pb20':''}}">
- <navigator class="tabbar i-flex-item {{data==2?'active':''}}" hover-class="none" url="/lionfish_comshop/moduleB/supply/index" open-type="redirect">
- <text class="iconfont icon-shouye"></text>
- <view class="mt5">管理首页</view>
- </navigator>
- <navigator class="tabbar i-flex-item {{data==0?'active':''}}" hover-class="none" url="/lionfish_comshop/moduleB/supply/goodsManage" open-type="redirect">
- <text class="iconfont icon-goods-manage"></text>
- <view class="mt5">商品管理</view>
- </navigator>
- <navigator class="tabbar i-flex-item {{data==1?'active':''}}" hover-class="none" url="/lionfish_comshop/moduleB/supply/orderManage" open-type="redirect">
- <text class="iconfont icon-order-manage"></text>
- <view class="mt5">订单管理</view>
- </navigator>
- <!-- <navigator class="tabbar i-flex-item {{data==3?'active':''}}" hover-class="none" url="" open-type="redirect">
- <text class="iconfont icon-refund-manage"></text>
- <view class="mt5">售后管理</view>
- </navigator> -->
- <navigator class="tabbar i-flex-item {{data==4?'active':''}}" hover-class="none" url="/lionfish_comshop/moduleB/supply/moneyManage" open-type="redirect">
- <text class="iconfont icon-money-manage"></text>
- <view class="mt5">资金管理</view>
- </navigator>
- </view>
- </i-fixed-bottom>
- </template>
|