search.wxml 846 B

1234567891011121314151617181920212223
  1. <!-- 搜索框 -->
  2. <view class="search-box">
  3. <image src="/static/icon-09.png" />
  4. <input type="text" placeholder="搜索关键字" placeholder-class="placeholder" confirm-type='search' bindconfirm='searchContent' />
  5. </view>
  6. <!-- tbas -->
  7. <view class="tabs">
  8. <My_RoundedCornerButtonTabs list='{{tabsList}}' bindtabsSelectedIitem='tabsSelectedIitem'></My_RoundedCornerButtonTabs>
  9. </view>
  10. <!-- 直播 -->
  11. <view hidden="{{ftype!=1}}">
  12. <portalLice list='{{liveList}}'></portalLice>
  13. </view>
  14. <!-- 供需 -->
  15. <view hidden="{{ftype!=2}}">
  16. <supplyanddemandList list='{{supplyanddemandList}}'></supplyanddemandList>
  17. </view>
  18. <!-- 通告 -->
  19. <view hidden="{{ftype!=3}}">
  20. <annunciateList list='{{annunciateList}}' ftype="2" />
  21. </view>
  22. <!-- 占位图 -->
  23. <van-empty wx:if="{{showPlaceholder}}" image="search" description="暂无内容" />