8 lines
429 B
Plaintext
8 lines
429 B
Plaintext
![]() |
<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>
|