Files
toutoukan_front/miniprogram/pages/index/index.wxml
JACKYMYPERSON eae49c76bd 基本成型
2025-09-27 17:24:52 +08:00

20 lines
778 B
Plaintext

<!--index.wxml-->
<scroll-view class="scrollarea" scroll-y type="list">
<view hidden="{{label_value !== 'label_1'}}"><home-component></home-component></view>
<view hidden="{{label_value !== 'label_2'}}"><publish-component></publish-component></view>
<view hidden="{{label_value !== 'label_3'}}">
<shop-component></shop-component>
</view>
<view hidden="{{label_value !== 'label_4'}}"><user-component id="userComp"></user-component></view>
<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>
</scroll-view>