search_2.wxml 1.8 KB
<!--pages/index/search_2/search_2.wxml-->

<view class='container'>
  <view class='top'>
    <view class='top_box'>
      <view class='top_pic'>
        <image src='../../../img/aicon_02@2x.png'></image>
      </view>
      <input placeholder='搜索岗位/招聘者' bindblur='inputText'></input>
    </view>      
  </view>

  <view class='items'>
    <view class='item'>
      <view class='item_top'>
        <view class='item_top_left'>搜索历史</view>
        <view class='item_top_right' bindtap='clear_history'>
          <image src='../../../img/aicon_17@2x.png'></image>
        </view>
      </view>
      <!-- 底部 循环搜索历史-->
      <view class='item_bottom' >
        <view class='item_bottom_content' wx:for='{{history_keyword}}'  wx:key='' 
        bindtap='toSearch' data-keyword='{{item.keyword}}'>
        {{item.keyword}}</view>
      </view>
    </view>

    <view class='item'>
      <view class='item_top'>
        <view class='item_top_left'>热门搜索</view>
       
      </view>
      <!-- 底部 -->
      <view class='item_bottom' >
        <view class='item_bottom_content' wx:for='{{hot_station}}' wx:key='' bindtap='toSearch' data-keyword='{{item.station_name}}'>{{item.station_name}}</view>
        <!-- <view class='item_bottom_content'>司机</view>
        <view class='item_bottom_content'>前台</view> -->
   
      </view>
    </view>

    <view class='item'>
      <view class='item_top'>
        <view class='item_top_left'>热门招聘者</view>
       
      </view>
      <!-- 底部 -->
      <view class='item_bottom' >
        <view class='item_bottom_content' wx:for='{{hot_boss}}' wx:key='' bindtap='toSearch' data-keyword='{{item.resume_name}}'>{{item.resume_name}}</view>
        <!-- <view class='item_bottom_content'>天津银河百荣科技有限公司</view> -->
   
      </view>
    </view>
  </view>

</view>