21 lines
485 B
Plaintext
21 lines
485 B
Plaintext
<view class="custom-tab-bar">
|
|
<view
|
|
wx:for="{{list}}"
|
|
wx:key="pagePath"
|
|
class="custom-tab-bar__item"
|
|
data-index="{{index}}"
|
|
bindtap="switchTab"
|
|
>
|
|
<image
|
|
class="custom-tab-bar__icon"
|
|
src="{{selected === index ? item.selectedIconPath : item.iconPath}}"
|
|
mode="aspectFit"
|
|
/>
|
|
<text
|
|
class="custom-tab-bar__label {{selected === index ? 'custom-tab-bar__label--active' : ''}}"
|
|
>
|
|
{{item.text}}
|
|
</text>
|
|
</view>
|
|
</view>
|