search_4.wxml
2.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<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='搜索岗位/招聘者' value='{{keyword}}' bindblur='inputText'></input>
</view>
</view>
<!-------- 内容 ---------->
<!-- 相关招聘者 -->
<view wx:if="{{search_boss.length==0&&search_job.length==0}}">
<view class='mid'>
<view class='pic'>
<image src='../../../img/aicon_58@2x.png'></image>
</view>
<!-- 文字 -->
<view class='pic_text'>
暂无该岗位/招聘者/内容哦, 请换其他关键词试一试
</view>
</view>
</view>
<block wx:else>
<view class='about'>
相关招聘者
</view>
<!-- 条目 -->
<view class='items'>
<view class='item' wx:for='{{search_boss}}' wx:key='' bindtap='toPersonal' data-id='{{item.id}}' data-user_id='{{item.user_id}}'>
<!-- 头部 -->
<view class='item_top'>
<view class='item_top_left'>
<view class='item_top_left_pic'>
<image src='{{item.logo}}'></image>
</view>
<view class='item_top_left_text'>
<view class='text_top'>{{item.resume_name}}</view>
<view class='text_bottom_text'>{{item.also_some}}个岗位在招</view>
</view>
</view>
</view>
</view>
</view>
<!-- 颜色条 -->
<view class='color_line'></view>
<!-- 相关岗位 -->
<view class='about'>
相关岗位
</view>
<!-- 条目 -->
<view class='items'>
<view class='item' wx:for='{{search_job}}' wx:key='' data-user_id='{{item.user_id}}' bindtap='toRelated'>
<!-- 头部 -->
<view class='item_top'>
<view class='item_top_left'>
<view class='item_top_left_pic'>
<image src='/img/aicon_08@2x.png'></image>
</view>
<view class='item_top_left_text'>
<view class='text_top'>{{item.station_name}}</view>
<view class='text_bottom'>{{item.min_money}}-{{item.max_money}}元/月</view>
</view>
</view>
<view class='item_top_right'>
报名
</view>
</view>
<!-- 底部 -->
<view class='item_bottom'>
<view class='item_bottom_left'>
<view class='item_bottom_left_pic'>
<image src='/img/aicon_10@2x.png'></image>
</view>
<!-- 名字 -->
<view>{{item.resume_name}}</view>
</view>
<view class='item_bottom_right'>
<view class='item_bottom_left_pic'>
<image src='/img/aicon_09@2x.png'></image>
</view>
<view>南开区 3.2km</view>
</view>
</view>
</view>
</view>
<!-- 提示 -->
<view class='bottom'>
没有更多内容了
</view>
</block>
</view>