2025-08-09 00:30:05 +08:00
|
|
|
<!--index.wxml-->
|
|
|
|
|
<scroll-view class="scrollarea" scroll-y type="list">
|
2025-08-09 17:41:14 +08:00
|
|
|
<view hidden="{{label_value !== 'label_1'}}"><home-component></home-component></view>
|
|
|
|
|
<view hidden="{{label_value !== 'label_2'}}"><chat-component></chat-component></view>
|
2025-08-11 00:40:21 +08:00
|
|
|
<view hidden="{{label_value !== 'label_3'}}"><user-component id="userComp"></user-component></view>
|
2025-08-09 17:41:14 +08:00
|
|
|
<t-tab-bar t-class="t-tab-bar" value="{{label_value}}" bindchange="onChange" shape="round" theme="tag" split="{{false}}">
|
|
|
|
|
<t-tab-bar-item
|
|
|
|
|
wx:for="{{list}}"
|
|
|
|
|
wx:key="value"
|
|
|
|
|
value="{{item.label_value}}"
|
|
|
|
|
icon="{{item.icon}}"
|
|
|
|
|
ariaLabel="{{item.ariaLabel}}"
|
|
|
|
|
>
|
|
|
|
|
</t-tab-bar-item>
|
|
|
|
|
</t-tab-bar>
|
2025-08-09 00:30:05 +08:00
|
|
|
</scroll-view>
|