index.wxml 469 B

123456789
  1. <!--miniprogram/custom-tab-bar/index.wxml-->
  2. <view class="tab-bar">
  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}}" bindtap="switchTab">
  5. <image class="my-img" src="{{selected === index ? item.selectedIconPath : item.iconPath}}"/>
  6. <view class="my-view"style="color: {{selected === index ? selectedColor : color}}">{{item.text}}</view>
  7. </view>
  8. </view>