templates.wxml 1.8 KB
<template name="tabBar">
  <view class='tabbar_box'>
    <view class='tabbar_item' data-tindex='0' bindtap='service'>
      <!--<view class="iconfont icon-zonghe {{tab==0?'tab_active':''}}"></view>-->
      <image src="../../images/shouye1@2x.png" wx:if="{{tab==0}}"></image>
      <image src="../../images/shouye@2x.png"  wx:else></image>
      <!--<view class="tabbar_title {{tab==0?'tab_active':''}}">首页</view>-->
    </view>
    <view class='tabbar_item' data-tindex='1' bindtap='consult'>
      <!--<view class="iconfont icon-pinglun1  {{tab==1?'tab_active':''}}"></view>-->
      <image src="../../images/pindan1@2x.png" wx:if="{{tab==1}}"></image>
      <image src="../../images/pindan@2x.png"  wx:else></image>
      <!--<view class="tabbar_title  {{tab==1?'tab_active':''}}">拼单</view>-->
    </view>
    <view class='release_box' data-tindex='2' bindtap='release'>
      <!--<view class='iconfont icon-xiangji'></view>-->
      <image src="../../images/fabu@2x.png" class="fabu"></image>
    </view>
    <view class='tabbar_item' data-tindex='3' bindtap='wish'>
      <!--<view class="iconfont icon-xiangqu  {{tab==3?'tab_active':''}}"></view>-->
      <image src="../../images/order1@2x.png" wx:if="{{tab==3}}"></image>
      <image src="../../images/order@2x.png"  wx:else></image>
      <!--<view class="tabbar_title {{tab==3?'tab_active':''}}">订单</view>-->
    </view>
    <view class='tabbar_item' data-tindex='4' bindtap='my'>
      <!--<view class="iconfont icon-wode  {{tab==4?'tab_active':''}}"></view>-->
      <image src="../../images/my1@2x.png" wx:if="{{tab==4}}"></image>
      <image src="../../images/my@2x.png"  wx:else></image>
      <!--<view class="tabbar_title  {{tab==4?'tab_active':''}}">我的</view>-->
      <!--<view class="tip-point" wx:if="{{bubble == 2}}"></view>-->
    </view>
  </view>
</template>