1234567891011121314151617181920212223242526 |
- <!-- <view class="search">
- <input confirm-type="search" placeholder-style="color:#000;" placeholder="{{placeHolder}}" bindinput="cleanPlaceHolder"/>
- <view class='searchButton'>
- 搜索
- </view>
- </view>
- <view class='searchCategory'>
- <view>销量</view>
- <view>最新</view>
- <view>人气</view>
- <view>价格</view>
- <view>优惠券</view>
- </view> -->
- <import src="../home/home.wxml"/>
- <scroll-view scroll-y="{{true}}" style="height:{{winHeight}}px" bindscrolltolower="scrollChangeEvent" bindscroll="onScrollTop" scroll-with-animation="{{true}}" enable-back-to-top="{{true}}" scroll-top="{{scrollTopView}}">
- <view class='searchList'>
- <block wx:for="{{voucherFindList}}" wx:key="voucherFind">
- <template is="goodsList" data="{{...item}}"/>
- </block>
- </view>
- </scroll-view>
- <view class='goTop' style='background:url(https://small-app.oss-cn-beijing.aliyuncs.com/youhuiquan/返回顶部@2x.png) no-repeat;background-size:100% 100%;' bindtap='gotTopEvent' wx:if="{{goTopFlag}}"></view>
|