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
902 B
21 lines
902 B
<!--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">
|
|
<view bindtap="searchHot" data-item="{{item}}" class="keyword textOver" wx:for="{{keywords}}">{{item}}</view>
|
|
</view>
|
|
<view class="my-title-box"><text>热门搜索</text></view>
|
|
<view class="hot-list">
|
|
<view class="hot-item" wx:for="{{hot}}" bindtap="searchHot" data-item="{{item.name}}">
|
|
<view class="hot-num">{{index+1}}</view>
|
|
<view>{{item.name}}</view>
|
|
</view>
|
|
</view>
|