You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
541 B
15 lines
541 B
|
2 weeks ago
|
<van-tabbar active="{{ active }}" active-color="rgba(74, 184, 253, 1)" bind:change="onChange" inactive-color="#010105">
|
||
|
|
<block wx:for="{{list}}" wx:key="*this">
|
||
|
|
<van-tabbar-item
|
||
|
|
class="tab-item"
|
||
|
|
wx:if="{{ index != 3 || !anyWhere}}"
|
||
|
|
bind:tap="handleNav"
|
||
|
|
data-index="{{index}}"
|
||
|
|
icon="/images/{{active==index ? item.iconActive : item.icon}}.png"
|
||
|
|
>
|
||
|
|
<view class="name {{index==active && 'active'}}">{{item.text}}</view>
|
||
|
|
<view class="hot"></view>
|
||
|
|
</van-tabbar-item>
|
||
|
|
</block>
|
||
|
|
</van-tabbar>
|