exhibition-enterprise.wxml 1016 B

123456789101112131415161718192021222324
  1. <view class="search-w">
  2. <search-bar placeholder="请输入关键字" bindtap="search" />
  3. </view>
  4. <van-tabs active="{{ active }}" color="#17D2D2" line-width="20" bind:change="onChange" nav-class="nav" tab-active-class="active" border="{{false}}">
  5. <van-tab title="{{ tabs.name }}" wx:for="{{tabs}}" wx:for-item="tabs" wx:key="index">
  6. <view>
  7. <slot name="list">
  8. </slot>
  9. <view wx:if="{{!custom}}">
  10. <view class="no-data" wx:if="{{tabs.list.length === 0}}">暂无数据</view>
  11. <view class="enterprise-list" wx:else>
  12. <view class="enterprise-item" wx:for="{{ tabs.list }}" wx:key="index" data-vr_link="{{item.vrLink}}" bindtap="toScene">
  13. <!-- <view class="number">{{ item.companyBooth }}</view> -->
  14. <view class="enterprise-name">{{ item.companyName }}</view>
  15. <icon icon="my_list_arrow arrow" size="12" />
  16. </view>
  17. </view>
  18. <!-- <no-more-bar wx:if="{{tabs.list.length !== 0}}" /> -->
  19. </view>
  20. </view>
  21. </van-tab>
  22. </van-tabs>