index.wxml 494 B

123456789101112131415
  1. <!--miniprogram/custom-tab-bar/index.wxml-->
  2. <view class="ipone">
  3. <view class="tab-bar">
  4. <view class="tab-bar-border"></view>
  5. <view wx:for="{{list}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
  6. <view>
  7. <image src="{{active === index ? item.selectedIconPath : item.iconPath}}"></image>
  8. <view style="color: {{active === index ? selectedColor : color}}">{{item.text}}</view>
  9. </view>
  10. </view>
  11. </view>
  12. </view>