拓恒河湖长制全民护河平台WEB端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
554B

  1. <!--miniprogram/custom-tab-bar/index.wxml-->
  2. <view class="tab-bar" style='height:{{isIphoneX?166:120}}rpx;'>
  3. <view class="tab-bar-border"></view>
  4. <view wx:for="{{list}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}" data-auth="{{item.auth}}" bindtap="switchTab">
  5. <image
  6. class="tab-bar-item-image"
  7. src="{{selected === index ? item.selectedIconPath : item.iconPath}}">
  8. </image>
  9. <view style="color: {{selected === index ? selectedColor : color}}">{{item.text}}</view>
  10. </view>
  11. </view>