hotProduct.wxml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <!--pages/hotProduct/hotProduct.wxml-->
  2. <van-notify id="van-notify" />
  3. <wux-refresher
  4. id="wux-refresher"
  5. bind:pulling="onPulling"
  6. bind:refresh="onRefresh"
  7. scrollTop="{{scrollTop}}"
  8. >
  9. <view class="hotProduct">
  10. <view class="search">
  11. <myInput value="{{keyword}}" placeholder="请输入产品相关关键词" bindchange="changeKeyword" bindsearch="search" bindclickInnerIcon="clickInnerIcon"></myInput>
  12. </view>
  13. <view class="menuList">
  14. <view class="menu_item green">
  15. <text class="iconfont myIconanquanbangzhu"></text>
  16. <text>白名单</text>
  17. </view>
  18. <view class="menu_item yellow">
  19. <text class="iconfont myIconicon-test"></text>
  20. <text>灰名单</text>
  21. </view>
  22. <view class="menu_item red">
  23. <text class="iconfont myIcongroup43"></text>
  24. <text>黑名单</text>
  25. </view>
  26. </view>
  27. <scroll-view type="list" scroll-y class="main">
  28. <myProduct tableData="{{tableData}}" total="{{total}}" loading="{{loading}}" bindloadMore="loadMore"></myProduct>
  29. </scroll-view>
  30. </view>
  31. </wux-refresher>