123456789101112131415161718192021222324 |
- <!--pages/hotProduct/hotProduct.wxml-->
- <van-notify id="van-notify" />
- <view class="hotProduct">
- <view class="search">
- <myInput value="{{keyword}}" placeholder="请输入产品相关关键词" bindchange="changeKeyword" bindsearch="search" bindclickInnerIcon="clickInnerIcon"></myInput>
- </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>
- <scroll-view type="list" scroll-y class="main">
- <myProduct tableData="{{tableData}}" total="{{total}}" bindloadMore="loadMore"></myProduct>
- </scroll-view>
- </view>
|