Files
toutoukan_front/miniprogram/pages/index/index.wxml

20 lines
778 B
Plaintext
Raw Normal View History

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>
2025-09-27 17:24:52 +08:00
<view hidden="{{label_value !== 'label_2'}}"><publish-component></publish-component></view>
2025-09-24 21:37:23 +08:00
<view hidden="{{label_value !== 'label_3'}}">
2025-09-27 17:24:52 +08:00
<shop-component></shop-component>
2025-09-24 21:37:23 +08:00
</view>
<view hidden="{{label_value !== 'label_4'}}"><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>