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
777 B
15 lines
777 B
<!--miniprogram/custom-tab-bar/index.wxml--> |
|
<cover-view class="tab-box"> |
|
<cover-image class="tab-bord" src="{{bordImg}}"></cover-image> |
|
<cover-view class="tab-bar"> |
|
<cover-view wx:for="{{list}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" |
|
data-index="{{index}}" bindtap="switchTab"> |
|
<cover-image class="tab-index" src="{{item.selectedIconPath}}" wx:if="{{item.text==='看地'}}"></cover-image> |
|
<cover-image src="{{selected === index ? item.selectedIconPath : item.iconPath}}" wx:else> |
|
</cover-image> |
|
<cover-view class="tab-title" style="color: {{selected === index ? selectedColor : color}}" |
|
wx:if="{{item.text!=='看地'}}"> |
|
{{item.text}}</cover-view> |
|
</cover-view> |
|
</cover-view> |
|
</cover-view> |