15 lines
403 B
Plaintext
15 lines
403 B
Plaintext
<view wx:if="{{visible}}" class="tabbar" role="tablist">
|
|
<view
|
|
wx:for="{{tabItems}}"
|
|
wx:key="pagePath"
|
|
class="tab-item {{selected === index ? 'tab-item-active' : ''}}"
|
|
data-index="{{index}}"
|
|
data-path="{{item.pagePath}}"
|
|
bindtap="switchTab"
|
|
role="tab"
|
|
>
|
|
<text class="tab-glyph">{{item.glyph}}</text>
|
|
<text class="tab-label">{{item.text}}</text>
|
|
</view>
|
|
</view>
|