9 lines
454 B
Plaintext
9 lines
454 B
Plaintext
<!--miniprogram/custom-tab-bar/index.wxml-->
|
|
<view class="tab-bar">
|
|
<view class="tab-bar-border"></view>
|
|
<view wx:for="{{tabBarList}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
|
|
<image src="{{selected === item.id ? item.selectedIconPath : item.iconPath}}"></image>
|
|
<view style="color: {{selected === item.id ? selectedColor : color}}">{{item.text}}</view>
|
|
</view>
|
|
</view>
|