<view class="container">
|
<view class="header">
|
<view class="iconfont icon-fanhui" bind:tap='onCancel'></view>
|
<view class="search_container">
|
<view class="iconfont icon-xiazai17"></view>
|
<input value='{{content}}' bind:confirm="onConfirmEvent" placeholder-class="in-bar" placeholder='{{hint}}' class='bar' auto-focus="true" bindinput='formName'/>
|
<view class='iconfont icon-shanchu cancel-img' bind:tap="onDelete" class=""></view>
|
</view>
|
<view class='search_text' bindtap='search'>搜索</view>
|
</view>
|
|
<view class="history">
|
<view class="search-history">搜索历史<text class="iconfont icon-lajitong" bindtap="cleanHistory"></text></view>
|
<view class="history-content">
|
<view wx:for="{{history}}" wx:key="ids">
|
<view class="history-content-name" bindtap='jumpGoods' data-content="{{item}}">{{item}}</view>
|
</view>
|
</view>
|
</view>
|
</view>
|