| 1234567891011121314151617181920212223242526272829303132333435 |
- <navbar parameter="{{parameter}}"></navbar>
- <view class="searchGood">
- <view class="search acea-row row-between-wrapper">
- <view class="input acea-row row-between-wrapper">
- <text class="iconfont icon-sousuo2"></text>
- <input
- type="text"
- value="{{searchValue}}"
- focus="{{focus}}"
- placeholder="点击搜索商品"
- placeholder-class="placeholder"
- bindinput="setValue"
- bindconfirm="searchBut"
- />
- </view>
- <view class="bnt" bindtap="searchBut">搜索</view>
- </view>
- <view class="title">热门搜索</view>
- <view class="list acea-row">
- <block wx:for="{{hotSearchList}}" wx:key="index">
- <view class="item" bindtap="setHotSearchValue" data-item="{{item}}">{{item}}</view>
- </block>
- </view>
- <view class="line"></view>
- <goodList bastList="{{bastList}}" wx:if="{{bastList.length > 0}}"></goodList>
- <view class="loadingicon acea-row row-center-wrapper" wx:if="{{bastList.length > 0}}">
- <text class="loading iconfont icon-jiazai" hidden="{{loading==false}}"></text>{{loadTitle}}
- </view>
- </view>
- <view class="noCommodity">
- <view class="pictrue" wx:if="{{bastList.length == 0}}">
- <image src="/images/noSearch.png"></image>
- </view>
- <recommend host_product="{{host_product}}" wx:if="{{bastList.length == 0 && page > 1}}"></recommend>
- </view>
|