tabbar.wxml 1.4 KB

123456789101112131415161718192021222324
  1. <view class="tabbar_box {{isIphoneX?'iphoneX-height':''}}" style="background-color:{{tabbar.backgroundColor}};bottom: {{bottom}}rpx;">
  2. <block wx:for="{{tabbar.list}}" wx:key="pagePath">
  3. <navigator wx:if="{{item.isSpecial}}" class="tabbar_nav" hover-class="none" url="{{item.pagePath}}" style="color:{{tabbar.selectedColor}}" open-type="switchTab">
  4. <view class='special-wrapper'>
  5. <image class="tabbar_icon" src="{{item.iconPath}}"></image>
  6. </view>
  7. <image class='special-text-wrapper'></image>
  8. <text class="tabtext">{{item.text}}</text>
  9. </navigator>
  10. <navigator wx:else class="tabbar_nav" hover-class="none" url="{{item.pagePath}}" style="color:{{item.selected ? tabbar.selectedColor : tabbar.color}}" open-type="switchTab">
  11. <block wx:if="{{item.text=='消息'}}">
  12. <image class="tabbar_icon" src="{{item.selected ? item.selectedIconPath : item.iconPath}}"></image>
  13. <block wx:if="{{unreadCount>0}}">
  14. <text class="weui-badge" style="position: absolute; top: 0px; right: 15%;">{{unreadCount}}</text>
  15. </block>
  16. <text class="tabtext">{{item.text}}</text>
  17. </block>
  18. <block wx:else="">
  19. <image class="tabbar_icon" src="{{item.selected ? item.selectedIconPath : item.iconPath}}"></image>
  20. <text class="tabtext">{{item.text}}</text>
  21. </block>
  22. </navigator>
  23. </block>
  24. </view>