index.wxml 626 B

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