You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
966 B

5 years ago
<!--pages/search/index.wxml-->
<title title="搜索"></title>
<view class="my-top-search">
<view class="my-search-box">
<view class="iconfont icon-sousuo"></view>
<input bindinput="inputKeyword" type="text" placeholder="搜索"></input>
<view class="my-search-btn" bindtap="search">搜索</view>
</view>
</view>
<view style="height:84rpx"></view>
<view class="my-title-box"><text>搜索历史</text><text bindtap="delHis" class="iconfont icon-shanchu"></text></view>
<view class="keywords textOver">
4 years ago
<view bindtap="searchHot" data-item="{{item}}" data-event="search_history_click" class="keyword textOver" wx:for="{{keywords}}">{{item}}</view>
5 years ago
</view>
<view class="my-title-box"><text>热门搜索</text></view>
<view class="hot-list">
4 years ago
<view class="hot-item" wx:for="{{hot}}" bindtap="searchHot" data-event="search_hot_click" data-item="{{item.name}}">
5 years ago
<view class="hot-num">{{index+1}}</view>
<view>{{item.name}}</view>
</view>
</view>