2025-06-06 15:17:30 +08:00

9 lines
553 B
Plaintext

<!--miniprogram/custom-tab-bar/index.wxml-->
<view class="tabBar">
<view class="tabBarItem" wx:for="{{tabBar.list}}" wx:key="index" data-path="{{'/' + item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
<image class="itemImage" src="{{tabIndex === index ? item.selectedIconPath : item.iconPath}}"></image>
<view class="itemTitle" style="color: {{tabIndex === index ? tabBar.selectedColor : tabBar.color}}">{{item.text}}</view>
<view class="item-bottom {{tabIndex === index ? 'item-bottom-click' :'' }}"></view>
</view>
</view>