index.wxml 672 B

123456789101112
  1. <view class="tab-bar">
  2. <view class="mask" wx:if="{{mask}}"></view>
  3. <view wx:for="{{listTab}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}"
  4. bindtap="switchTab">
  5. <view class="noticeTips" wx:if="{{item.pagePath=='/pages/my/index'&&userInfo.myCount>0}}">
  6. {{userInfo.myCount}}</view>
  7. <view class="noticeTips" wx:if="{{item.pagePath=='/pages/message/index'&&userInfo.mCount>0}}">
  8. {{userInfo.mCount}}</view>
  9. <image src="{{selected === index ? item.selectedIconPath : item.iconPath}}"></image>
  10. <view style="color: {{selected === index ? selectedColor : color}}">{{item.text}}</view>
  11. </view>
  12. </view>