12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!--pages/hotProduct/hotProduct.wxml-->
- <van-notify id="van-notify" />
- <myDialog isShown="{{showDialog}}" title="爆款风险" showFoot="{{false}}" bindcancel="closeDialog">
- <view class="dialog_content">
- <view class="dialog_content_text">
- <span class="dialog_content_point">爆款产品</span>是指在商品销售中,供不应求,销售量很高的商品,通常所说的卖的很多,人气很高的商品,广泛应用于网店、实物店铺(此款小程序只针对亚马逊)。另一种说法是牛品,爆款商品,爆款宝贝,人气宝贝,热卖商品。
- </view>
-
- <view class="dialog_content_text" style="margin-top:10px">
- 而此页面的<span class="dialog_content_point">爆款风险</span>是指:在亚马逊各个店铺中热卖、销量高的商品,您想去卖,是否会出现相应的侵权风险等一系列问题。
- </view>
-
- </view>
- </myDialog>
- <view class="hotProduct">
- <view class="search">
- <myInput value="{{keyword}}" placeholder="请输入产品相关关键词" bindchange="changeKeyword" bindsearch="search" bindclickInnerIcon="clickInnerIcon"></myInput>
- </view>
- <view class="tishi">
- 爆款产品<van-icon custom-class="vanIcon" name="info" bind:tap="showTishi"/>
- </view>
- <view class="menuList">
- <view class="menu_item green">
- <text class="iconfont myIconanquanbangzhu"></text>
- <text>白名单</text>
- </view>
- <view class="menu_item yellow">
- <text class="iconfont myIconicon-test"></text>
- <text>灰名单</text>
- </view>
- <view class="menu_item red">
- <text class="iconfont myIcongroup43"></text>
- <text>黑名单</text>
- </view>
- </view>
- <my-scroll-view triggered="{{triggered}}" load="{{load}}" hasMore="{{hasMore}}" bindonRefresh="onRefresh" bindloadMore="loadMore" customStyle="height: calc(100vh - 260rpx)">
- <myProduct wx:if="{{tableData.length>0}}" tableData="{{tableData}}"></myProduct>
- <van-empty wx:else description="暂无数据" />
- </my-scroll-view>
-
- </view>
|