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.
 

14 lines
676 B

<!--miniprogram/custom-tab-bar/index.wxml-->
<view class="tab-box">
<image class="tab-bord" src="../assets/images/tabIcon/my-bord.png"></image>
<view class="tab-bar">
<view wx:for="{{list}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}"
bindtap="switchTab">
<image src="{{selected === index ? item.selectedIconPath : item.iconPath}}" wx:if="{{item.text!=='首页'}}">
</image>
<image class="tab-index" src="{{item.selectedIconPath}}" wx:else></image>
<view style="color: {{selected === index ? selectedColor : color}}" wx:if="{{item.text!=='首页'}}">
{{item.text}}</view>
</view>
</view>
</view>