信达小程序
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.

21 lines
797 B

10 months ago
<van-tabbar active="{{ active }}" active-color="#CF5375" bind:change="onChange" inactive-color="#CCCCCC">
<block wx:for="{{list}}" wx:key="*this">
<view class="tab-custom-item" wx:if="{{item.custom}}" bind:tap="handleNav" data-index="{{index}}">
<view class="circle">
<image class="icon" src="{{imageUrl}}icon142.png?t={{Timestamp}}"></image>
</view>
<view class="name">突眼日记</view>
</view>
10 months ago
<van-tabbar-item
wx:else
10 months ago
class="tab-item"
bind:tap="handleNav"
data-index="{{index}}"
10 months ago
icon="{{imageUrl}}tabbar/{{active==index ? item.iconActive: item.icon}}.png?r=1"
10 months ago
>
10 months ago
<view class="name {{index==active && 'active'}}">{{item.text}}</view>
10 months ago
<view class="hot"></view>
</van-tabbar-item>
</block>
</van-tabbar>