tabs-house-list.wxml 515 B

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