1234567891011121314151617181920212223 |
- <!-- 搜索框 -->
- <view class="search-box">
- <image src="/static/icon-09.png" />
- <input type="text" placeholder="搜索关键字" placeholder-class="placeholder" confirm-type='search' bindconfirm='searchContent' />
- </view>
- <!-- tbas -->
- <view class="tabs">
- <My_RoundedCornerButtonTabs list='{{tabsList}}' bindtabsSelectedIitem='tabsSelectedIitem'></My_RoundedCornerButtonTabs>
- </view>
- <!-- 直播 -->
- <view hidden="{{ftype!=1}}">
- <portalLice list='{{liveList}}'></portalLice>
- </view>
- <!-- 供需 -->
- <view hidden="{{ftype!=2}}">
- <supplyanddemandList list='{{supplyanddemandList}}'></supplyanddemandList>
- </view>
- <!-- 通告 -->
- <view hidden="{{ftype!=3}}">
- <annunciateList list='{{annunciateList}}' ftype="2" />
- </view>
- <!-- 占位图 -->
- <van-empty wx:if="{{showPlaceholder}}" image="search" description="暂无内容" />
|