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.
|
|
|
|
<van-tabbar active="{{ active }}" active-color="#F23A2F" bind:change="onChange" inactive-color="#010105" placeholder>
|
|
|
|
|
<block wx:for="{{list}}" wx:key="*this">
|
|
|
|
|
<van-tabbar-item class="tab-item" wx:if="{{ index != 3 || !anyWhere}}" bind:tap="handleNav" data-index="{{index}}">
|
|
|
|
|
<image class="icon" slot="icon" src="{{imageUrl}}tabbar/{{item.icon}}.png?t={{Timestamp}}"></image>
|
|
|
|
|
<image class="icon" slot="icon-active" src="{{imageUrl}}tabbar/{{item.iconActive}}.png?t={{Timestamp}}"></image>
|
|
|
|
|
<view class="name {{index==active && 'active'}}">{{item.text}}</view>
|
|
|
|
|
</van-tabbar-item>
|
|
|
|
|
</block>
|
|
|
|
|
</van-tabbar>
|