dapaijizhang3/components/custom-tabbar/custom-tabbar.wxml

24 lines
575 B
Plaintext
Raw Permalink Normal View History

2025-11-20 16:42:59 +08:00
<!-- components/custom-tabbar/custom-tabbar.wxml -->
<view class="tabbar">
<view
class="tabbar-item {{selected === index ? 'active' : ''}}"
wx:for="{{list}}"
wx:key="index"
data-index="{{index}}"
bindtap="switchTab"
>
<view class="tabbar-icon">
<image
src="{{selected === index ? item.selectedIconPath : item.iconPath}}"
mode="aspectFit"
/>
</view>
<view
class="tabbar-text"
style="color: {{selected === index ? selectedColor : color}}"
>
{{item.text}}
</view>
</view>
</view>