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.
42 lines
2.0 KiB
42 lines
2.0 KiB
<template name="wxSearch">
|
|
<view class="wxSearch" bindtap="wxSearchTap" style="display:{{wxSearchData.view.isShow ? 'block':'none'}};height:{{wxSearchData.view.seachHeight}}px;top:{{wxSearchData.view.barHeight}}px;">
|
|
<view class="wxSearchInner">
|
|
|
|
<view class="wxSearchMindKey">
|
|
<view class="wxSearchMindKeyList">
|
|
<block wx:for="{{wxSearchData.mindKeys}}" wx:key="mindKeys">
|
|
<view class="wxSearchMindKeyItem" bindtap="wxSearchKeyTap" data-key="{{item}}">{{item}}</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="wxSearchKey" style="display:{{wxSearchData.view.isShowSearchKey ? 'block':'none'}}">
|
|
<text class="wxSearchTitle">热门搜索</text>
|
|
<view class="wxSearchKeyList">
|
|
<block wx:for="{{wxSearchData.keys}}" wx:key="keys">
|
|
<view class="wxSearchKeyItem" bindtap="wxSearchKeyTap" data-key="{{item}}">{{item}}</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
<view class="wxSearchKey" style="display:{{wxSearchData.view.isShowSearchHistory ? 'block':'none'}}">
|
|
<view>
|
|
<text class="wxSearchTitle" style='float:left;'>搜索历史</text>
|
|
<view class="wxSearchDeleteAllBtn" bindtap="wxSearchDeleteAll">
|
|
<image src='../../images/qingchu.png' style='width:30rpx;height:30rpx;'></image>
|
|
</view>
|
|
</view>
|
|
<view style='clear:both;'></view>
|
|
<view wx:if="{{wxSearchData.his[0]}}" class="wxSearchKeyList">
|
|
<block wx:for="{{wxSearchData.his}}" wx:key="his">
|
|
<view class="wxSearchKeyItem">
|
|
<text class="wxSearchHistoryItemText" bindtap="wxSearchKeyTap" data-key="{{item}}">{{item}}</text>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
<view wx:else>
|
|
<view class="wxSearchHistoryEmpty">搜索历史为空</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|