9 lines
569 B
Plaintext
Raw Normal View History

2026-01-30 09:54:26 +08:00
<!--miniprogram/custom-tab-bar/index.wxml-->
2025-08-29 09:51:02 +08:00
<view class="tab-bar">
2026-04-03 09:49:37 +08:00
<!-- <view class="tab-bar-border"></view>-->
<view wx:for="{{list}}" wx:key="index" class="{{index === 1 ? 'tab-bar-item-center' : 'tab-bar-item'}}" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
<image class="{{index === 1 ? 'tab-bar-item-icon' : ''}}" src="{{selected === index ? item.selectedIconPath : item.iconPath}}"></image>
<view wx:if="{{index !== 1}}" style="color: {{selected === index ? selectedColor : color}}">{{item.text}}</view>
2026-01-30 09:54:26 +08:00
</view>
2025-08-29 09:51:02 +08:00
</view>