24 lines
575 B
Plaintext
24 lines
575 B
Plaintext
|
|
<!-- 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>
|