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.
13 lines
382 B
13 lines
382 B
6 months ago
|
<view class="tab-bar">
|
||
|
<view
|
||
|
wx:for="{{list}}"
|
||
|
wx:key="index"
|
||
|
class="tab-bar-item {{selected === index ? 'active' : ''}}"
|
||
|
data-path="{{item.pagePath}}"
|
||
|
data-index="{{index}}"
|
||
|
bindtap="switchTab"
|
||
|
>
|
||
|
<view class="icon-wrapper {{item.icon}} {{selected === index ? 'active' : ''}}"></view>
|
||
|
<view class="text">{{item.text}}</view>
|
||
|
</view>
|
||
|
</view>
|