123456789101112131415161718192021222324 |
- <view class="search-w">
- <search-bar placeholder="请输入关键字" bindtap="search" />
- </view>
- <van-tabs active="{{ active }}" color="#17D2D2" line-width="20" bind:change="onChange" nav-class="nav" tab-active-class="active" border="{{false}}">
- <van-tab title="{{ tabs.name }}" wx:for="{{tabs}}" wx:for-item="tabs" wx:key="index">
- <view>
- <slot name="list">
- </slot>
- <view wx:if="{{!custom}}">
- <view class="no-data" wx:if="{{tabs.list.length === 0}}">暂无数据</view>
- <view class="enterprise-list" wx:else>
- <view class="enterprise-item" wx:for="{{ tabs.list }}" wx:key="index" data-vr_link="{{item.vrLink}}" bindtap="toScene">
- <!-- <view class="number">{{ item.companyBooth }}</view> -->
- <view class="enterprise-name">{{ item.companyName }}</view>
- <icon icon="my_list_arrow arrow" size="12" />
- </view>
- </view>
- <!-- <no-more-bar wx:if="{{tabs.list.length !== 0}}" /> -->
- </view>
- </view>
- </van-tab>
- </van-tabs>
|