index.wxml 492 B

12345678
  1. <!--miniprogram/custom-tab-bar/index.wxml-->
  2. <view class="tab-bar" style="box-sizing: content-box;padding-top: 10rpx;">
  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 src="{{selected == index ? item.selectedIconPath : item.iconPath}}"></image>
  6. <view style="color: {{selected == index ? selectedColor : color}}">{{item.text}}</view>
  7. </view>
  8. </view>