hotProduct.wxml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!--pages/hotProduct/hotProduct.wxml-->
  2. <van-notify id="van-notify" />
  3. <followPopup show="{{showPopup}}" showCollect="{{false}}" changeFollow="{{changeFollow}}" bindonClose="closePopup" bindattention="attention" bindcancelFollow="cancelFollow"></followPopup>
  4. <myDialog isShown="{{showDialog}}" title="爆款风险" showFoot="{{false}}" bindcancel="closeDialog">
  5. <view class="dialog_content">
  6. <view class="dialog_content_text">
  7. <span class="dialog_content_point">爆款产品</span>来源于美国亚马逊平台的Top50爆款产品,每周三更新产品清单。
  8. </view>
  9. <!-- <view class="dialog_content_text" style="margin-top:10px">
  10. 而此页面的<span class="dialog_content_point">爆款风险</span>是指:在亚马逊各个店铺中热卖、销量高的商品,您想去卖,是否会出现相应的侵权风险等一系列问题。
  11. </view> -->
  12. </view>
  13. </myDialog>
  14. <view class="hotProduct">
  15. <view class="search">
  16. <myInput value="{{keyword}}" placeholder="请输入产品相关关键词" bindchange="changeKeyword" bindsearch="search" bindclickInnerIcon="clickInnerIcon"></myInput>
  17. </view>
  18. <view class="tishi">
  19. 爆款产品 <span style="font-size: 14px;color: black;">(直接点击图片查看该产品专利风险)</span>
  20. <van-icon custom-class="vanIcon" name="info" bind:tap="showTishi"/>
  21. </view>
  22. <view class="menuList">
  23. <view class="menu_item green">
  24. <text class="iconfont myIconanquanbangzhu"></text>
  25. <text>白名单</text>
  26. </view>
  27. <view class="menu_item red">
  28. <text class="iconfont myIcongroup43"></text>
  29. <text>黑名单</text>
  30. </view>
  31. <view class="menu_item yellow ">
  32. <text class="iconfont myIconicon-test"></text>
  33. <text>灰名单</text>
  34. </view>
  35. </view>
  36. <my-scroll-view triggered="{{triggered}}" load="{{load}}" hasMore="{{hasMore}}" bindonRefresh="onRefresh" bindloadMore="loadMore" customStyle="height: calc(100vh - 260rpx)">
  37. <myProduct wx:if="{{tableData.length>0}}" tableData="{{tableData}}" id="myProduct" bindshowPopup="openPopup" bindhiddenPopup="closePopup"></myProduct>
  38. <van-empty wx:else description="暂无数据" />
  39. </my-scroll-view>
  40. </view>