hotProduct.wxml 1.0 KB

1234567891011121314151617181920212223242526
  1. <!--pages/hotProduct/hotProduct.wxml-->
  2. <van-notify id="van-notify" />
  3. <view class="hotProduct">
  4. <view class="search">
  5. <myInput value="{{keyword}}" placeholder="请输入产品相关关键词" bindchange="changeKeyword" bindsearch="search" bindclickInnerIcon="clickInnerIcon"></myInput>
  6. </view>
  7. <view class="menuList">
  8. <view class="menu_item green">
  9. <text class="iconfont myIconanquanbangzhu"></text>
  10. <text>白名单</text>
  11. </view>
  12. <view class="menu_item yellow">
  13. <text class="iconfont myIconicon-test"></text>
  14. <text>灰名单</text>
  15. </view>
  16. <view class="menu_item red">
  17. <text class="iconfont myIcongroup43"></text>
  18. <text>黑名单</text>
  19. </view>
  20. </view>
  21. <my-scroll-view triggered="{{triggered}}" load="{{load}}" hasMore="{{hasMore}}" bindonRefresh="onRefresh" bindloadMore="loadMore" customStyle="height: calc(100vh - 260rpx)">
  22. <myProduct wx:if="{{tableData.length>0}}" tableData="{{tableData}}"></myProduct>
  23. <van-empty wx:else description="暂无数据" />
  24. </my-scroll-view>
  25. </view>