- <van-tabs active="{{ active }}" line-width="20" color="#1FE4DC" bind:change="onChange">
- <van-tab title="{{ tabs.name }}" wx:for="{{tabs}}" wx:for-item="tabs" wx:key="index">
- <view >
- <view class="no-data" wx:if="{{tabs.house_list.length === 0}}">暂无数据</view>
- <view class="house-list" wx:else>
- <house-item wx:for="{{ tabs.house_list }}" house="{{ item }}" wx:key="id" />
- </view>
- <no-more-bar wx:if="{{tabs.house_list.length !== 0}}" />
- </view>
- </van-tab>
- </van-tabs>
|