search_2.wxml
1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!--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>