16 lines
1000 B
XML
16 lines
1000 B
XML
<view wx:if="{{showTabBar}}" class="tab-bar"
|
|
style="{{bgColor?'background-color:'+bgColor+';':''}} {{bgImg?'background-image: url('+bgImg+');':''}}">
|
|
<view class="tab-bar__item-wrapper" data-index="{{index}}" mut-bind:tap="onTapItem" style="width:{{750/list.length}}rpx" wx:for="{{list}}" wx:key="index">
|
|
<view class="tab-bar__item-container">
|
|
<!-- 标签图标 -->
|
|
<l-badge show="{{item.redDot}}" dot="{{item.redDot===true}}" value="{{item.redDot}}" data-index="{{index}}" mut-bind:lintap="onTapItem">
|
|
<oak-icon name="{{selectedIndex===index?item.selectedIconName:item.iconName}}" size="{{item.iconSize || 22}}" color="{{selectedIndex===index? selectedColor : color}}" />
|
|
</l-badge>
|
|
<!-- 标签文字 -->
|
|
<view wx:if="{{item.text}}" class="tab-bar__item-text {{ selectedIndex===index ? 'tab-bar__item--selected' : '' }}" style="color: {{selectedIndex===index ? selectedColor : color}}">
|
|
{{item.text}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|