first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<view class="hall">
<van-tabs animated swipeable
color="#ffd23c"
id="tabs"
active="{{ active }}" bind:change="onChange">
<van-tab wx:for="{{ hall }}" title="{{ item.title }}" wx:key="type">
<view class="children_wrap van-hairline--top">
<view class="children_item {{ i == item.index ? 'active' : ''}}"
wx:for="{{ item.children }}"
wx:for-index="i"
wx:key="type"
wx:for-item="v" data-cid="{{ i }}"
bindtap="changeChildren">
{{ v.title }}
</view>
</view>
<item show-desc="{{ false }}"
search-list="{{ item.children[item.index].content }}">
</item>
</van-tab>
</van-tabs>
</view>