Helius
2021-04-07 5a9edd419172c5d4072d7d945a34b1bddfcbc604
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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>