hotProduct.wxml 897 B

123456789101112131415161718192021222324
  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. <scroll-view type="list" scroll-y class="main">
  22. <myProduct tableData="{{tableData}}" total="{{total}}" bindloadMore="loadMore"></myProduct>
  23. </scroll-view>
  24. </view>