kuaiying_wx/custom-tab-bar/index.wxml

8 lines
429 B
Plaintext
Raw Permalink Normal View History

2025-03-04 15:25:38 +08:00
<view class="tab-bar">
<block wx:for="{{list}}" wx:key="index">
<view class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
<image class="tab-bar-icon" src="{{selected === index ? item.selectedIconPath : item.iconPath}}"></image>
<text class="tab-bar-text" style="color: {{selected === index ? selectedColor : color}}">{{item.text}}</text>
</view>
</block>
</view>