作者 Lijianheng

更新

正在显示 72 个修改的文件 包含 4683 行增加4 行删除

要显示太多修改。

为保证性能只显示 72 of 72+ 个文件。

1 { 1 {
2 "pages":[ 2 "pages":[
3 - "pages/index/index"  
4 - ] 3 + "pages/inviteFriends/inviteFriends",
  4 + "pages/recommend/recommend",
  5 + "pages/financialRecord/financialRecord",
  6 + "pages/feedback/feedback",
  7 + "pages/registration/registration",
  8 + "pages/myResume2/myResume2",
  9 + "pages/myResume/myResume",
  10 + "pages/record2/record2",
  11 + "pages/record/record",
  12 + "pages/myMessage2/myMessage2",
  13 + "pages/myMessage/myMessage",
  14 + "pages/index/select/select",
  15 + "pages/index/search_5/search_5",
  16 + "pages/index/search_4/search_4",
  17 + "pages/index/search_2/search_2",
  18 + "pages/index/search_3/search_3",
  19 + "pages/mine/perfectInfor/perfectInfor",
  20 + "pages/index/index",
  21 + "pages/publish/publish",
  22 + "pages/mine/mine"
  23 + ],
  24 + "window": {
  25 + "backgroundTextStyle": "light",
  26 + "navigationBarBackgroundColor": "#fff",
  27 + "navigationBarTitleText": "WeChat",
  28 + "navigationBarTextStyle": "black"
  29 + },
  30 + "tabBar": {
  31 + "selectedColor": "#FF8839",
  32 + "list": [
  33 + {
  34 + "pagePath": "pages/index/index",
  35 + "text": "首页",
  36 + "selectedColor": "#6EAC3D",
  37 + "iconPath": "img/nav_02@2x.png",
  38 + "selectedIconPath": "img/nav_01@2x.png"
  39 + },
  40 + {
  41 + "pagePath": "pages/publish/publish",
  42 + "text": "发布",
  43 + "selectedColor": "#6EAC3D",
  44 + "iconPath": "img/nav_03@2x.png",
  45 + "selectedIconPath": "img/nav_03@2x.png"
  46 + },
  47 + {
  48 + "pagePath": "pages/mine/mine",
  49 + "text": "我的",
  50 + "selectedColor": "#6EAC3D",
  51 + "iconPath": "img/nav_04@2x.png",
  52 + "selectedIconPath": "img/nav_05@2x.png"
  53 + }
  54 + ]
  55 + }
5 } 56 }

873 字节

  1 +// pages/feedback/feedback.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "主页"
  4 +}
  1 +
  2 +<view class='container'>
  3 + <view class='top'>
  4 + <textarea placeholder='请输入您的意见,我们会积极处理并改正的~'></textarea>
  5 + <view class='text_num'>0/200</view>
  6 + </view>
  7 +
  8 + <view class='bottom'>
  9 + 提交
  10 + </view>
  11 +
  12 +</view>
  1 +
  2 +page{
  3 + line-height: 1;
  4 +}
  5 +.container{
  6 + width: 750rpx;
  7 + display: flex;
  8 + flex-flow: column;
  9 + align-items: center;
  10 + justify-content: center;
  11 +}
  12 +.top{
  13 + margin-top: 27rpx;
  14 + display: flex;
  15 + align-items: center;
  16 + justify-content: center;
  17 + position: relative;
  18 +
  19 +}
  20 +.top textarea{
  21 + width:686rpx;
  22 + height:300rpx;
  23 + background:rgba(247,247,247,1);
  24 + border-radius:10rpx;
  25 + font-size: 28rpx;
  26 + box-sizing: border-box;
  27 + padding: 23rpx 25rpx;
  28 +}
  29 +.text_num{
  30 + font-size:24rpx;
  31 + font-family:PingFang-SC-Medium;
  32 + font-weight:500;
  33 + color:rgba(153,153,153,1);
  34 + position: absolute;
  35 + bottom: 23rpx;
  36 + right: 25rpx
  37 +}
  38 +.bottom{
  39 + margin-top: 40rpx;
  40 + width:686rpx;
  41 + height:80rpx;
  42 + line-height: 80rpx;
  43 + text-align: center;
  44 + background:rgba(255,129,44,1);
  45 + border-radius:5rpx;
  46 +
  47 + font-size:28rpx;
  48 + font-family:PingFang-SC-Medium;
  49 + font-weight:500;
  50 + color:rgba(255,255,255,1);
  51 +}
  1 +// pages/financialRecord/financialRecord.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "财务记录"
  4 +}
  1 +<!--pages/financialRecord/financialRecord.wxml-->
  2 +
  3 +<view class='container'>
  4 + <view class='item'>
  5 + <view class='item_top'>
  6 + <view class='item_top_left'>提现</view>
  7 + <view class='item_top_right'>-100</view>
  8 + </view>
  9 + <view class='item_bottom'>
  10 + <view class='item_bottom_left'>2019-02-28 11:23</view>
  11 + <view class='item_bottom_right'>交易成功</view>
  12 + </view>
  13 + </view>
  14 +
  15 + <view class='item'>
  16 + <view class='item_top'>
  17 + <view class='item_top_left'>邀请好友</view>
  18 + <view class='item_top_right color_red'>+2.00</view>
  19 + </view>
  20 + <view class='item_bottom'>
  21 + <view class='item_bottom_left'>2019-02-28 11:23</view>
  22 + <view class='item_bottom_right'>邀请成功</view>
  23 + </view>
  24 + </view>
  25 +
  26 + <view class='item'>
  27 + <view class='item_top'>
  28 + <view class='item_top_left'>退款</view>
  29 + <view class='item_top_right color_red'>+100.00</view>
  30 + </view>
  31 + <view class='item_bottom'>
  32 + <view class='item_bottom_left'>2019-02-28 11:23</view>
  33 + <view class='item_bottom_right'>交易失败</view>
  34 + </view>
  35 + </view>
  36 +
  37 + <view class='item'>
  38 + <view class='item_top'>
  39 + <view class='item_top_left'>退款</view>
  40 + <view class='item_top_right color_red'>+2.00</view>
  41 + </view>
  42 + <view class='item_bottom'>
  43 + <view class='item_bottom_left'>2019-02-28 11:23</view>
  44 + <view class='item_bottom_right'>提交审核</view>
  45 + </view>
  46 + </view>
  47 +
  48 + <view class='item'>
  49 + <view class='item_top'>
  50 + <view class='item_top_left'>首次完成任务</view>
  51 + <view class='item_top_right color_red'>+100.00</view>
  52 + </view>
  53 + <view class='item_bottom'>
  54 + <view class='item_bottom_left'>2019-02-28 11:23</view>
  55 + <view class='item_bottom_right'>已成功</view>
  56 + </view>
  57 + </view>
  58 +</view>
  1 +/* pages/financialRecord/financialRecord.wxss */
  2 +
  3 +page{
  4 + line-height: 1;
  5 +}
  6 +
  7 +.container{
  8 + width: 750rpx;
  9 + display: flex;
  10 + flex-flow: column;
  11 +}
  12 +.item{
  13 + display: flex;
  14 + flex-flow: column;
  15 + padding: 30rpx 0;
  16 + margin: 0 32rpx;
  17 + border-bottom: 1px solid #EBEBEB;
  18 +}
  19 +.item_top{
  20 + width: 100%;
  21 + display: flex;
  22 + justify-content: space-between;
  23 +}
  24 +.item_top_left{
  25 + font-size:32rpx;
  26 + font-family:PingFang-SC-Medium;
  27 + font-weight:500;
  28 + color:rgba(26,26,26,1);
  29 +}
  30 +.item_top_right{
  31 +
  32 + font-size:32rpx;
  33 + font-family:Roboto-Regular;
  34 + font-weight:400;
  35 + color:rgba(255,170,0,1);
  36 +}
  37 +.item_bottom{
  38 + margin-top: 20rpx;
  39 + width: 100%;
  40 + display: flex;
  41 + justify-content: space-between;
  42 +}
  43 +.item_bottom_left{
  44 + font-size:24rpx;
  45 + font-family:PingFang-SC-Medium;
  46 + font-weight:500;
  47 + color:rgba(153,153,153,1);
  48 +}
  49 +.item_bottom_right{
  50 +
  51 + font-size:26rpx;
  52 + font-family:PingFang-SC-Medium;
  53 + font-weight:500;
  54 + color:rgba(102,102,102,1);
  55 +}
  56 +.color_red{
  57 + color: #FF3B28;
  58 +}
1 { 1 {
2 "usingComponents": {}, 2 "usingComponents": {},
3 - "navigationBarTitleText": "地址管理", 3 + "navigationBarTitleText": "主页",
4 "navigationBarBackgroundColor": "white", 4 "navigationBarBackgroundColor": "white",
5 "navigationBarTextStyle": "black" 5 "navigationBarTextStyle": "black"
6 } 6 }
@@ -2,6 +2,368 @@ @@ -2,6 +2,368 @@
2 2
3 <view class='container'> 3 <view class='container'>
4 <view class='top'> 4 <view class='top'>
5 - 5 + <!-- 左边地区 -->
  6 + <view class='top_left'>
  7 + <view>天津</view>
  8 + <view class='top_left_img'>
  9 + <image src='/img/aicon_01@2x.png'></image>
  10 + </view>
  11 + </view>
  12 + <!-- 右边搜索框 -->
  13 + <view class='top_right'>
  14 + <view class='top_right_pic'>
  15 + <image src='/img/aicon_02@2x.png'></image>
  16 + </view>
  17 + <input placeholder='搜索岗位/招聘者'></input>
  18 + </view>
6 </view> 19 </view>
  20 + <!-- 中部选择 -->
  21 + <view class='mid'>
  22 + <view class='mid_list'>
  23 + <!-- 图片 -->
  24 + <view class='mid_list_top'>
  25 + <image src='/img/aicon_03@2x.png'></image>
  26 + </view>
  27 + <!-- 底部文字 -->
  28 + <view class='mid_list_bottom'>
  29 + 在家可做
  30 + </view>
  31 + </view>
  32 + <view class='mid_list'>
  33 + <!-- 图片 -->
  34 + <view class='mid_list_top'>
  35 + <image src='/img/aicon_05@2x.png'></image>
  36 + </view>
  37 + <!-- 底部文字 -->
  38 + <view class='mid_list_bottom'>
  39 + 好评推荐
  40 + </view>
  41 + </view>
  42 + <view class='mid_list'>
  43 + <!-- 图片 -->
  44 + <view class='mid_list_top'>
  45 + <image src='/img/aicon_04@2x.png'></image>
  46 + </view>
  47 + <!-- 底部文字 -->
  48 + <view class='mid_list_bottom'>
  49 + 热门推荐
  50 + </view>
  51 + </view>
  52 + <view class='mid_list'>
  53 + <!-- 图片 -->
  54 + <view class='mid_list_top'>
  55 + <image src='/img/aicon_06@2x.png'></image>
  56 + </view>
  57 + <!-- 底部文字 -->
  58 + <view class='mid_list_bottom'>
  59 + 轻松兼职
  60 + </view>
  61 + </view>
  62 + </view>
  63 + <!-- 轮播图 -->
  64 + <view class='banner'>
  65 + <image src='/img/aicon_07@2x.png'></image>
  66 + </view>
  67 + <!-- 筛选 -->
  68 + <view class='select'>
  69 + <view class='select_list'>
  70 + <view>地区</view>
  71 + <view class='select_list_pic'>
  72 + <image src='/img/aicon_11@2x.png'></image>
  73 + </view>
  74 + </view>
  75 + <view class='select_list'>
  76 + <view>岗位</view>
  77 + <view class='select_list_pic'>
  78 + <image src='/img/aicon_11@2x.png'></image>
  79 + </view>
  80 + </view>
  81 + <view class='select_list'>
  82 + <view>推荐排序</view>
  83 + <view class='select_list_pic'>
  84 + <image src='/img/aicon_11@2x.png'></image>
  85 + </view>
  86 + </view>
  87 + <view class='select_list'>
  88 + <view>筛选</view>
  89 + <view class='select_list_pic_big'>
  90 + <image src='/img/aicon_12@2x.png'></image>
  91 + </view>
  92 + </view>
  93 + </view>
  94 + <!-- 条目 -->
  95 + <view class='items'>
  96 + <view class='item'>
  97 + <!-- 头部 -->
  98 + <view class='item_top'>
  99 + <view class='item_top_left'>
  100 + <view class='item_top_left_pic'>
  101 + <image src='/img/aicon_08@2x.png'></image>
  102 + </view>
  103 + <view class='item_top_left_text'>
  104 + <view class='text_top'>酒店服务员</view>
  105 + <view class='text_bottom'>4000-5000元/月</view>
  106 + </view>
  107 + </view>
  108 +
  109 + <view class='item_top_right'>
  110 + 报名
  111 + </view>
  112 + </view>
  113 + <!-- 底部 -->
  114 + <view class='item_bottom'>
  115 + <view class='item_bottom_left'>
  116 + <view class='item_bottom_left_pic'>
  117 + <image src='/img/aicon_10@2x.png'></image>
  118 + </view>
  119 + <!-- 名字 -->
  120 + <view>王思迪</view>
  121 + </view>
  122 +
  123 + <view class='item_bottom_right'>
  124 + <view class='item_bottom_left_pic'>
  125 + <image src='/img/aicon_09@2x.png'></image>
  126 + </view>
  127 + <view>南开区 3.2km</view>
  128 + </view>
  129 + </view>
  130 + </view>
  131 + <view class='item'>
  132 + <!-- 头部 -->
  133 + <view class='item_top'>
  134 + <view class='item_top_left'>
  135 + <view class='item_top_left_pic'>
  136 + <image src='/img/aicon_08@2x.png'></image>
  137 + </view>
  138 + <view class='item_top_left_text'>
  139 + <view class='text_top'>酒店服务员</view>
  140 + <view class='text_bottom'>4000-5000元/月</view>
  141 + </view>
  142 + </view>
  143 +
  144 + <view class='item_top_right'>
  145 + 报名
  146 + </view>
  147 + </view>
  148 + <!-- 底部 -->
  149 + <view class='item_bottom'>
  150 + <view class='item_bottom_left'>
  151 + <view class='item_bottom_left_pic'>
  152 + <image src='/img/aicon_10@2x.png'></image>
  153 + </view>
  154 + <!-- 名字 -->
  155 + <view>王思迪</view>
  156 + </view>
  157 +
  158 + <view class='item_bottom_right'>
  159 + <view class='item_bottom_left_pic'>
  160 + <image src='/img/aicon_09@2x.png'></image>
  161 + </view>
  162 + <view>南开区 3.2km</view>
  163 + </view>
  164 + </view>
  165 + </view>
  166 + <view class='item'>
  167 + <!-- 头部 -->
  168 + <view class='item_top'>
  169 + <view class='item_top_left'>
  170 + <view class='item_top_left_pic'>
  171 + <image src='/img/aicon_08@2x.png'></image>
  172 + </view>
  173 + <view class='item_top_left_text'>
  174 + <view class='text_top'>酒店服务员</view>
  175 + <view class='text_bottom'>4000-5000元/月</view>
  176 + </view>
  177 + </view>
  178 +
  179 + <view class='item_top_right'>
  180 + 报名
  181 + </view>
  182 + </view>
  183 + <!-- 底部 -->
  184 + <view class='item_bottom'>
  185 + <view class='item_bottom_left'>
  186 + <view class='item_bottom_left_pic'>
  187 + <image src='/img/aicon_10@2x.png'></image>
  188 + </view>
  189 + <!-- 名字 -->
  190 + <view>王思迪</view>
  191 + </view>
  192 +
  193 + <view class='item_bottom_right'>
  194 + <view class='item_bottom_left_pic'>
  195 + <image src='/img/aicon_09@2x.png'></image>
  196 + </view>
  197 + <view>南开区 3.2km</view>
  198 + </view>
  199 + </view>
  200 + </view>
  201 + <view class='item'>
  202 + <!-- 头部 -->
  203 + <view class='item_top'>
  204 + <view class='item_top_left'>
  205 + <view class='item_top_left_pic'>
  206 + <image src='/img/aicon_08@2x.png'></image>
  207 + </view>
  208 + <view class='item_top_left_text'>
  209 + <view class='text_top'>酒店服务员</view>
  210 + <view class='text_bottom'>4000-5000元/月</view>
  211 + </view>
  212 + </view>
  213 +
  214 + <view class='item_top_right'>
  215 + 报名
  216 + </view>
  217 + </view>
  218 + <!-- 底部 -->
  219 + <view class='item_bottom'>
  220 + <view class='item_bottom_left'>
  221 + <view class='item_bottom_left_pic'>
  222 + <image src='/img/aicon_10@2x.png'></image>
  223 + </view>
  224 + <!-- 名字 -->
  225 + <view>王思迪</view>
  226 + </view>
  227 +
  228 + <view class='item_bottom_right'>
  229 + <view class='item_bottom_left_pic'>
  230 + <image src='/img/aicon_09@2x.png'></image>
  231 + </view>
  232 + <view>南开区 3.2km</view>
  233 + </view>
  234 + </view>
  235 + </view>
  236 +
  237 + </view>
  238 +
  239 + <!-- 筛选弹层 -->
  240 + <view class='mask' style='display:none'>
  241 + <view class='select mask_select'>
  242 + <view class='select_list'>
  243 + <view>地区</view>
  244 + <view class='select_list_pic'>
  245 + <image src='/img/aicon_11@2x.png'></image>
  246 + </view>
  247 + </view>
  248 + <view class='select_list'>
  249 + <view>岗位</view>
  250 + <view class='select_list_pic'>
  251 + <image src='/img/aicon_11@2x.png'></image>
  252 + </view>
  253 + </view>
  254 + <view class='select_list'>
  255 + <view>推荐排序</view>
  256 + <view class='select_list_pic'>
  257 + <image src='/img/aicon_11@2x.png'></image>
  258 + </view>
  259 + </view>
  260 + <view class='select_list'>
  261 + <view>筛选</view>
  262 + <view class='select_list_pic_big'>
  263 + <image src='/img/aicon_12@2x.png'></image>
  264 + </view>
  265 + </view>
  266 + </view>
  267 +
  268 +
  269 +
  270 + <!-- 地区内容 -->
  271 + <view class='area' style='display:none'>
  272 + <view class='area_item'>
  273 + <view class='area_item_name yellow_color'>不限</view>
  274 + </view>
  275 + <view class='area_item'>
  276 + <view class='area_item_name '>不限</view>
  277 + </view>
  278 + <view class='area_item'>
  279 + <view class='area_item_name'>和平</view>
  280 + </view>
  281 + <view class='area_item'>
  282 + <view class='area_item_name'>河东万达广场</view>
  283 + </view>
  284 + <view class='area_item'>
  285 + <view class='area_item_name'>河东万达广场</view>
  286 + </view>
  287 + <view class='area_item'>
  288 + <view class='area_item_name'>河东万达广场</view>
  289 + </view>
  290 + </view>
  291 +
  292 + <!-- 岗位内容 -->
  293 + <view class='job' style='display:none'>
  294 + <view class='job_left'>
  295 + <view class='job_left_item'>不限</view>
  296 + <view class='job_left_item'>热门</view>
  297 + <view class='job_left_item'>餐饮</view>
  298 + <view class='job_left_item'>旅游/酒店</view>
  299 + <view class='job_left_item pitch_on'>休闲</view>
  300 + <view class='job_left_item'>运动健身</view>
  301 + <view class='job_left_item'>餐饮</view>
  302 + <view class='job_left_item'>旅游/酒店</view>
  303 + </view>
  304 +
  305 +
  306 + <view class='job_right'>
  307 + <view class='job_right_items'>
  308 + <view class='job_right_item'>不限</view>
  309 + <view class='job_right_item'>迎宾</view>
  310 + <view class='job_right_item'>传菜员</view>
  311 + <view class='job_right_item'>配菜打荷</view>
  312 + <view class='job_right_item'>洗碗工</view>
  313 + <view class='job_right_item yellow_color'>后厨</view>
  314 + </view>
  315 + </view>
  316 + </view>
  317 +
  318 + <!-- 推荐排序 -->
  319 + <view class='sort' style='display:none'>
  320 + <view class='sort_item color_y'>推荐排序</view>
  321 + <view class='sort_item'>离我最近</view>
  322 + <view class='sort_item'>工资最高</view>
  323 + <view class='sort_item'>最新发布</view>
  324 + </view>
  325 +
  326 + <!-- 筛选 -->
  327 + <view class='screen' style='display:none'>
  328 + <!-- 学历要求 -->
  329 + <view class='screen_item'>
  330 + <view class='screen_item_top'>学历要求</view>
  331 + <view class='screen_item_bottom'>
  332 + <view class='screen_item_bottom_i yellow_color'>不限</view>
  333 + <view class='screen_item_bottom_i'>小学及以下</view>
  334 + <view class='screen_item_bottom_i'>初中</view>
  335 + <view class='screen_item_bottom_i'>高中</view>
  336 + <view class='screen_item_bottom_i'>中专/技校</view>
  337 + <view class='screen_item_bottom_i'>大专</view>
  338 + <view class='screen_item_bottom_i'>本科</view>
  339 + <view class='screen_item_bottom_i'>硕士</view>
  340 + <view class='screen_item_bottom_i'>博士</view>
  341 +
  342 + </view>
  343 + </view>
  344 + <!-- 酬薪范围 -->
  345 + <view class='screen_item'>
  346 + <view class='screen_item_top'>酬薪范围</view>
  347 + <view class='screen_item_bottom'>
  348 + <view class='screen_item_bottom_i yellow_color'>不限</view>
  349 + <view class='screen_item_bottom_i'>3000以下</view>
  350 + <view class='screen_item_bottom_i'>3000~5000</view>
  351 + <view class='screen_item_bottom_i'>5000~8000</view>
  352 + <view class='screen_item_bottom_i'>8000以上</view>
  353 +
  354 + </view>
  355 + </view>
  356 +
  357 + <!-- 底部按钮 -->
  358 + <view class='screen_bottom'>
  359 + <view class='screen_bottom_left'>重置</view>
  360 + <view class='screen_bottom_right'>确认</view>
  361 + </view>
  362 + </view>
  363 +
  364 +
  365 +
  366 + </view>
  367 +
  368 +
7 </view> 369 </view>
1 /* pages/index/index.wxss */ 1 /* pages/index/index.wxss */
  2 +page{
  3 + background-color: #f5f5f5;
  4 + line-height: 1;
  5 +}
2 .container{ 6 .container{
3 width: 750rpx; 7 width: 750rpx;
4 display: flex; 8 display: flex;
5 flex-flow: column; 9 flex-flow: column;
  10 +}
  11 +.top{
  12 + width: 100%;
  13 + display: flex;
  14 + background: #fff;
  15 + padding: 24rpx 32rpx;
  16 +}
  17 +.top_left{
  18 + display: flex;
  19 + align-items: center;
  20 + font-size:28rpx;
  21 + font-family:PingFang-SC-Medium;
  22 + font-weight:500;
  23 + color:rgba(26,26,26,1);
  24 +}
  25 +.top_left_img{
  26 + margin-left: 14rpx;
  27 + width:18rpx;
  28 + height:10rpx;
  29 + display: flex;
  30 +}
  31 +.top_left_img image{
  32 + width: 100%;
  33 + height: 100%;
  34 +}
  35 +.top_right{
  36 + margin-left: 30rpx;
  37 + display: flex;
  38 + align-items: center;
  39 +
  40 + width:570rpx;
  41 + height:60rpx;
  42 + background:rgba(237,238,242,1);
  43 + border-radius:10rpx;
  44 + box-sizing: border-box;
  45 + padding: 0 24rpx;
  46 +}
  47 +.top_right_pic{
  48 + display: flex;
  49 + width:28rpx;
  50 + height:28rpx;
  51 +}
  52 +.top_right_pic image{
  53 + width: 100%;
  54 + height: 100%;
  55 +}
  56 +.top_right input{
  57 + margin-left: 25rpx;
  58 + width: 100%;
  59 + font-size:26rpx;
  60 + font-family:PingFang-SC-Medium;
  61 + font-weight:500;
  62 +}
  63 +/* 中部 */
  64 +.mid{
  65 + margin-top: 14rpx;
  66 + display: flex;
  67 + justify-content: space-between;
  68 + background-color: #fff;
  69 + padding: 32rpx 56rpx;
  70 +}
  71 +.mid_list{
  72 + display: flex;
  73 + align-items: center;
  74 + justify-content: center;
  75 + flex-flow: column;
  76 +}
  77 +.mid_list_top{
  78 + width:88rpx;
  79 + height:88rpx;
  80 + /* box-shadow:-1px 10px 20px 0px rgba(255,179,18,0.18); */
  81 + border-radius:50%;
  82 + display: flex;
  83 +}
  84 +.mid_list_top image{
  85 + width: 100%;
  86 + height: 100%;
  87 +}
  88 +.mid_list_bottom{
  89 + font-size:26rpx;
  90 + font-family:PingFang-SC-Medium;
  91 + font-weight:500;
  92 + color:rgba(77,77,77,1);
  93 +}
  94 +.banner{
  95 + width: 750rpx;
  96 + height: 220rpx;
  97 + display: flex;
  98 +}
  99 +.banner image{
  100 + width: 100%;
  101 + height: 100%;
  102 +}
  103 +.select{
  104 + margin-top: 14rpx;
  105 + display: flex;
  106 + justify-content: space-between;
  107 + padding: 28rpx 54rpx;
  108 + background: #fff;
  109 +}
  110 +.select_list{
  111 + display: flex;
  112 + align-items: center;
  113 + margin-left: 9rpx;
  114 + font-size:26rpx;
  115 + font-family:PingFang-SC-Regular;
  116 + font-weight:400;
  117 + color:rgba(26,26,26,1);
  118 +}
  119 +.select_list_pic{
  120 + margin-left: 9rpx;
  121 + width: 12rpx;
  122 + height: 8rpx;
  123 + display: flex;
  124 +}
  125 +.select_list_pic image{
  126 + width: 100%;
  127 + height: 100%;
  128 +}
  129 +.select_list_pic_big{
  130 + margin-left: 8rpx;
  131 + width:18rpx;
  132 + height:18rpx;
  133 + display: flex;
  134 +}
  135 +.select_list_pic_big image{
  136 + width: 100%;
  137 + height: 100%;
  138 +}
  139 +/* 条目 */
  140 +.items{
  141 + display: flex;
  142 + flex-flow: column;
  143 +}
  144 +.item{
  145 + margin-top: 1px;
  146 + display: flex;
  147 + flex-flow: column;
  148 + background: #fff;
  149 + padding: 40rpx;
  150 +}
  151 +.item_top{
  152 + display: flex;
  153 + justify-content: space-between;
  154 +}
  155 +.item_top_left{
  156 + display: flex;
  157 +}
  158 +.item_top_left_pic{
  159 + width:72rpx;
  160 + height:72rpx;
  161 + border-radius:2rpx;
  162 + display: flex;
  163 +}
  164 +.item_top_left_pic image{
  165 + width: 100%;
  166 + height: 100%;
  167 +}
  168 +.item_top_left_text{
  169 + margin-left: 23rpx;
  170 + display: flex;
  171 + flex-flow: column;
  172 +}
  173 +.text_top{
  174 + font-size:32rpx;
  175 + font-family:PingFang-SC-Medium;
  176 + font-weight:500;
  177 + color:rgba(26,26,26,1);
  178 +}
  179 +.text_bottom{
  180 + margin-top: 17rpx;
  181 + font-size:28rpx;
  182 + font-family:PingFang-SC-Medium;
  183 + font-weight:500;
  184 + color:rgba(255,59,40,1);
  185 +}
  186 +.item_top_right{
  187 + width:140rpx;
  188 + height:66rpx;
  189 + line-height: 66rpx;
  190 + text-align: center;
  191 + border:1px solid rgba(255,102,0,1);
  192 + border-radius:33rpx;
  193 +
  194 +
  195 + font-size:28rpx;
  196 + font-family:PingFang-SC-Medium;
  197 + font-weight:500;
  198 + color:rgba(255,102,0,1);
  199 +}
  200 +.item_bottom{
  201 + margin-top: 20rpx;
  202 + margin-left: 80rpx;
  203 + display: flex;
  204 + align-items: center;
  205 + justify-content: space-between;
  206 + font-size:26rpx;
  207 + font-family:PingFang-SC-Medium;
  208 + font-weight:500;
  209 + color:rgba(153,153,153,1);
  210 +}
  211 +.item_bottom_left{
  212 + display: flex;
  213 + align-items: center;
  214 +
  215 +}
  216 +.item_bottom_left_pic{
  217 + width:22rpx;
  218 + height:22rpx;
  219 + display: flex;
  220 + margin-right: 13rpx;
  221 +}
  222 +.item_bottom_left_pic image{
  223 + width: 100%;
  224 + height: 100%;
  225 +}
  226 +.item_bottom_right{
  227 + display: flex;
  228 + align-items: center;
  229 +}
  230 +.item_bottom_left_pic{
  231 + margin-left: 14rpx;
  232 + width:20rpx;
  233 + height:24rpx;
  234 + display: flex;
  235 +}
  236 +.item_bottom_left_pic image{
  237 + width: 100%;
  238 + height: 100%;
  239 +}
  240 +.mask{
  241 + position: fixed;
  242 + width:750rpx;
  243 + height:1150rpx;
  244 + background:rgba(0,0,0,0.4);
  245 + z-index: 666;
  246 +
  247 +}
  248 +.mask_select{
  249 + margin: 0;
  250 + border-top: 1px solid #EBEBEB;
  251 + border-bottom: 1px solid #EBEBEB;
  252 +}
  253 +.area{
  254 + width: 686rpx;
  255 + background: #fff;
  256 + display: flex;
  257 +
  258 + flex-wrap: wrap;
  259 + padding: 16rpx 34rpx 200rpx 32rpx;
  260 +}
  261 +.area_item{
  262 + display: flex;
  263 +
  264 +}
  265 +.area_item_name{
  266 + background:rgba(255,252,245,1);
  267 + /* border:1px solid rgba(255,170,0,1); */
  268 + /* color: #FFAA00; */
  269 + border-radius:5rpx;
  270 +
  271 + margin-top:20rpx;
  272 + margin-right:15rpx;
  273 + box-sizing:border-box;
  274 + padding:18rpx 52rpx;
  275 + background:#F2F3F7;
  276 + font-size:26rpx;
  277 + font-family:PingFang-SC-Regular;
  278 + font-weight:400;
  279 + color:rgba(26,26,26,1);
  280 +
  281 +}
  282 +.yellow_color{
  283 + border:1px solid rgba(255,170,0,1);
  284 + color: #FFAA00;
  285 +}
  286 +.job{
  287 + display: flex;
  288 +}
  289 +.job_left{
  290 +
  291 + display: flex;
  292 + flex-flow: column;
  293 + background: #fff;
  294 + width:242rpx;
  295 + height:1125rpx;
  296 +}
  297 +.job_left_item{
  298 + font-size:26rpx;
  299 + font-family:PingFang-SC-Regular;
  300 + font-weight:400;
  301 + color:rgba(26,26,26,1);
  302 + padding: 32rpx;
  303 +}
  304 +.pitch_on{
  305 + color: #FFAA00;
  306 + background:rgba(242,243,247,1);
  307 +}
  308 +.job_right{
  309 + flex: 1;
  310 + background: #F2F3F7;
  311 +}
  312 +.job_right_items{
  313 + margin-top: 16rpx;
  314 + display: flex;
  315 + flex-wrap: wrap;
  316 + justify-content: space-between;
  317 + padding: 0 32rpx;
  318 +}
  319 +
  320 +.job_right_item{
  321 +
  322 + margin-top: 20rpx;
  323 + width:208rpx;
  324 + height:60rpx;
  325 + line-height: 60rpx;
  326 + text-align: center;
  327 + background:rgba(255,255,255,1);
  328 + border-radius:5rpx;
  329 + font-size: 26rpx;
  330 +}
  331 +.sort{
  332 + display: flex;
  333 + flex-flow: column;
  334 + background: #fff;
  335 +}
  336 +.sort_item{
  337 + /* box-sizing: border-box; */
  338 +
  339 + font-size:28rpx;
  340 + font-family:PingFang-SC-Regular;
  341 + font-weight:400;
  342 + color:rgba(51,51,51,1);
  343 + padding: 40rpx 0;
  344 + margin: 0 32rpx;
  345 + border-bottom: 1px solid #EBEBEB;
  346 +}
  347 +.color_y{
  348 + color: #FFAA00;
  349 +}
  350 +.screen{
  351 + height: 100%;
  352 + display: flex;
  353 + flex-flow: column;
  354 + background: #fff;
  355 +}
  356 +.screen_item{
  357 + display: flex;
  358 + flex-flow: column;
  359 + padding: 40rpx 0;
  360 + margin: 0 32rpx;
  361 + border-bottom: 1px solid #EBEBEB;
  362 +}
  363 +.screen_item_top{
  364 + font-size:30rpx;
  365 + font-family:PingFang-SC-Medium;
  366 + font-weight:500;
  367 + color:rgba(26,26,26,1);
  368 +}
  369 +.screen_item_bottom{
  370 + display: flex;
  371 + flex-wrap: wrap;
  372 + justify-content: space-between;
  373 +}
  374 +.screen_item_bottom_i{
  375 + margin-top: 20rpx;
  376 + width:156rpx;
  377 + height:60rpx;
  378 + line-height: 60rpx;
  379 + text-align: center;
  380 + background:rgba(242,243,247,1);
  381 + border-radius:5rpx;
  382 + font-size: 26rpx;
  383 +}
  384 +.screen_bottom{
  385 + display: flex;
  386 + position: fixed;
  387 + bottom: 0;
  388 + border-top: 1px solid #EBEBEB;
  389 +}
  390 +.screen_bottom_left{
  391 + width:294rpx;
  392 + height:80rpx;
  393 + line-height: 80rpx;
  394 + text-align: center;
  395 + background:rgba(255,255,255,1);
  396 + font-size: 26rpx;
  397 +}
  398 +.screen_bottom_right{
  399 + width:456rpx;
  400 + height:80rpx;
  401 + line-height: 80rpx;
  402 + text-align: center;
  403 + font-size: 26rpx;
  404 + color: #fff;
  405 + background:rgba(255,170,0,1);
6 } 406 }
  1 +// pages/index/search_2/search_2.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "搜索岗位/招聘者"
  4 +}
  1 +<!--pages/index/search_2/search_2.wxml-->
  2 +
  3 +<view class='container'>
  4 + <view class='top'>
  5 + <view class='top_box'>
  6 + <view class='top_pic'>
  7 + <image src='../../../img/aicon_02@2x.png'></image>
  8 + </view>
  9 + <input placeholder='搜索岗位/招聘者'></input>
  10 + </view>
  11 + </view>
  12 +
  13 + <view class='items'>
  14 + <view class='item'>
  15 + <view class='item_top'>
  16 + <view class='item_top_left'>搜索历史</view>
  17 + <view class='item_top_right'>
  18 + <image src='../../../img/aicon_17@2x.png'></image>
  19 + </view>
  20 + </view>
  21 + <!-- 底部 -->
  22 + <view class='item_bottom'>
  23 + <view class='item_bottom_content'>泥瓦工</view>
  24 + </view>
  25 + </view>
  26 +
  27 + <view class='item'>
  28 + <view class='item_top'>
  29 + <view class='item_top_left'>热门搜索</view>
  30 +
  31 + </view>
  32 + <!-- 底部 -->
  33 + <view class='item_bottom'>
  34 + <view class='item_bottom_content'>服务员</view>
  35 + <view class='item_bottom_content'>司机</view>
  36 + <view class='item_bottom_content'>前台</view>
  37 + <view class='item_bottom_content'>快递员</view>
  38 + <view class='item_bottom_content'>服务员</view>
  39 + <view class='item_bottom_content'>司机</view>
  40 + <view class='item_bottom_content'>前台</view>
  41 + <view class='item_bottom_content'>快递员</view>
  42 + </view>
  43 + </view>
  44 +
  45 + <view class='item'>
  46 + <view class='item_top'>
  47 + <view class='item_top_left'>热门招聘者</view>
  48 +
  49 + </view>
  50 + <!-- 底部 -->
  51 + <view class='item_bottom'>
  52 + <view class='item_bottom_content'>服务员</view>
  53 + <view class='item_bottom_content'>天津银河百荣科技有限公司</view>
  54 +
  55 + </view>
  56 + </view>
  57 + </view>
  58 +
  59 +</view>
  1 +/* pages/index/search_2/search_2.wxss */
  2 +
  3 +page{
  4 + line-height: 1;
  5 + /* background: #EBEBEB; */
  6 +}
  7 +.container{
  8 + display: flex;
  9 + flex-flow: column;
  10 +}
  11 +.top{
  12 + display: flex;
  13 + align-items: center;
  14 + justify-content: center;
  15 + background: #fff;
  16 + border-top: 1px solid #EBEBEB;
  17 + border-bottom: 1px solid #EBEBEB;
  18 + padding: 24rpx 0;
  19 +}
  20 +.top_box{
  21 + display: flex;
  22 + align-items: center;
  23 + width:686rpx;
  24 + height:60rpx;
  25 + background:rgba(237,238,242,1);
  26 + border-radius:10rpx;
  27 + box-sizing: border-box;
  28 + padding: 0 24rpx;
  29 +}
  30 +.top_pic{
  31 +
  32 + width:28rpx;
  33 + height:28rpx;
  34 + display: flex;
  35 +}
  36 +.top_pic image{
  37 + width: 100%;
  38 + height: 100%;
  39 +}
  40 +.top_box input{
  41 + margin-left: 25rpx;
  42 + width: 100%;
  43 + height: 100%;
  44 +
  45 +
  46 + font-size:26rpx;
  47 + font-family:PingFang-SC-Medium;
  48 + font-weight:500;
  49 + color:#000;
  50 +}
  51 +.items{
  52 + display: flex;
  53 + flex-flow: column;
  54 +}
  55 +.item{
  56 + display: flex;
  57 + flex-flow: column;
  58 + box-sizing: border-box;
  59 + padding: 40rpx 0;
  60 + margin: 0 32rpx;
  61 + border-bottom: 1px solid #EBEBEB;
  62 +}
  63 +.item_top{
  64 + display: flex;
  65 + justify-content: space-between;
  66 +}
  67 +.item_top_left{
  68 + display: flex;
  69 + font-size:30rpx;
  70 + font-family:PingFang-SC-Medium;
  71 + font-weight:500;
  72 + color:rgba(153,153,153,1);
  73 +}
  74 +.item_top_right{
  75 + width:40rpx;
  76 + height:40rpx;
  77 + display: flex;
  78 +}
  79 +.item_top_right image{
  80 + width: 100%;
  81 + height: 100%;
  82 +}
  83 +.item_bottom{
  84 + margin-top: 10rpx;
  85 + display: flex;
  86 + flex-wrap: wrap;
  87 +}
  88 +.item_bottom_content{
  89 + margin-top: 20rpx;
  90 + margin-right: 20rpx;
  91 + box-sizing: border-box;
  92 + padding: 17rpx;
  93 + background:rgba(250,250,250,1);
  94 + border-radius:5rpx;
  95 +
  96 + font-size:26rpx;
  97 + font-family:PingFang-SC-Regular;
  98 + font-weight:400;
  99 + color:rgba(26,26,26,1);
  100 +}
  1 +// pages/index/search_3/search_3.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "搜索岗位/招聘者"
  4 +}
  1 +
  2 +
  3 +<view class='container'>
  4 + <view class='top'>
  5 + <view class='top_box'>
  6 + <view class='top_pic'>
  7 + <image src='../../../img/aicon_02@2x.png'></image>
  8 + </view>
  9 + <input placeholder='搜索岗位/招聘者'></input>
  10 + </view>
  11 + </view>
  12 +
  13 + <!-- 相关岗位 -->
  14 + <view class='about'>
  15 + 相关岗位
  16 + </view>
  17 +
  18 + <!-- 条目 -->
  19 + <view class='items'>
  20 + <view class='item'>
  21 + <!-- 头部 -->
  22 + <view class='item_top'>
  23 + <view class='item_top_left'>
  24 + <view class='item_top_left_pic'>
  25 + <image src='/img/aicon_08@2x.png'></image>
  26 + </view>
  27 + <view class='item_top_left_text'>
  28 + <view class='text_top'>酒店服务员</view>
  29 + <view class='text_bottom'>4000-5000元/月</view>
  30 + </view>
  31 + </view>
  32 +
  33 + <view class='item_top_right'>
  34 + 报名
  35 + </view>
  36 + </view>
  37 + <!-- 底部 -->
  38 + <view class='item_bottom'>
  39 + <view class='item_bottom_left'>
  40 + <view class='item_bottom_left_pic'>
  41 + <image src='/img/aicon_10@2x.png'></image>
  42 + </view>
  43 + <!-- 名字 -->
  44 + <view>王思迪</view>
  45 + </view>
  46 +
  47 + <view class='item_bottom_right'>
  48 + <view class='item_bottom_left_pic'>
  49 + <image src='/img/aicon_09@2x.png'></image>
  50 + </view>
  51 + <view>南开区 3.2km</view>
  52 + </view>
  53 + </view>
  54 + </view>
  55 + <view class='item'>
  56 + <!-- 头部 -->
  57 + <view class='item_top'>
  58 + <view class='item_top_left'>
  59 + <view class='item_top_left_pic'>
  60 + <image src='/img/aicon_08@2x.png'></image>
  61 + </view>
  62 + <view class='item_top_left_text'>
  63 + <view class='text_top'>酒店服务员</view>
  64 + <view class='text_bottom'>4000-5000元/月</view>
  65 + </view>
  66 + </view>
  67 +
  68 + <view class='item_top_right'>
  69 + 报名
  70 + </view>
  71 + </view>
  72 + <!-- 底部 -->
  73 + <view class='item_bottom'>
  74 + <view class='item_bottom_left'>
  75 + <view class='item_bottom_left_pic'>
  76 + <image src='/img/aicon_10@2x.png'></image>
  77 + </view>
  78 + <!-- 名字 -->
  79 + <view>王思迪</view>
  80 + </view>
  81 +
  82 + <view class='item_bottom_right'>
  83 + <view class='item_bottom_left_pic'>
  84 + <image src='/img/aicon_09@2x.png'></image>
  85 + </view>
  86 + <view>南开区 3.2km</view>
  87 + </view>
  88 + </view>
  89 + </view>
  90 + <view class='item'>
  91 + <!-- 头部 -->
  92 + <view class='item_top'>
  93 + <view class='item_top_left'>
  94 + <view class='item_top_left_pic'>
  95 + <image src='/img/aicon_08@2x.png'></image>
  96 + </view>
  97 + <view class='item_top_left_text'>
  98 + <view class='text_top'>酒店服务员</view>
  99 + <view class='text_bottom'>4000-5000元/月</view>
  100 + </view>
  101 + </view>
  102 +
  103 + <view class='item_top_right'>
  104 + 报名
  105 + </view>
  106 + </view>
  107 + <!-- 底部 -->
  108 + <view class='item_bottom'>
  109 + <view class='item_bottom_left'>
  110 + <view class='item_bottom_left_pic'>
  111 + <image src='/img/aicon_10@2x.png'></image>
  112 + </view>
  113 + <!-- 名字 -->
  114 + <view>王思迪</view>
  115 + </view>
  116 +
  117 + <view class='item_bottom_right'>
  118 + <view class='item_bottom_left_pic'>
  119 + <image src='/img/aicon_09@2x.png'></image>
  120 + </view>
  121 + <view>南开区 3.2km</view>
  122 + </view>
  123 + </view>
  124 + </view>
  125 + <view class='item'>
  126 + <!-- 头部 -->
  127 + <view class='item_top'>
  128 + <view class='item_top_left'>
  129 + <view class='item_top_left_pic'>
  130 + <image src='/img/aicon_08@2x.png'></image>
  131 + </view>
  132 + <view class='item_top_left_text'>
  133 + <view class='text_top'>酒店服务员</view>
  134 + <view class='text_bottom'>4000-5000元/月</view>
  135 + </view>
  136 + </view>
  137 +
  138 + <view class='item_top_right'>
  139 + 报名
  140 + </view>
  141 + </view>
  142 + <!-- 底部 -->
  143 + <view class='item_bottom'>
  144 + <view class='item_bottom_left'>
  145 + <view class='item_bottom_left_pic'>
  146 + <image src='/img/aicon_10@2x.png'></image>
  147 + </view>
  148 + <!-- 名字 -->
  149 + <view>王思迪</view>
  150 + </view>
  151 +
  152 + <view class='item_bottom_right'>
  153 + <view class='item_bottom_left_pic'>
  154 + <image src='/img/aicon_09@2x.png'></image>
  155 + </view>
  156 + <view>南开区 3.2km</view>
  157 + </view>
  158 + </view>
  159 + </view>
  160 +
  161 + </view>
  162 +
  163 + <!-- 提示 -->
  164 + <view class='bottom'>
  165 + 没有更多内容了
  166 + </view>
  167 +
  168 +
  169 +
  170 +</view>
  1 +
  2 +
  3 +page{
  4 + line-height: 1;
  5 + /* background: #EBEBEB; */
  6 +}
  7 +.container{
  8 + display: flex;
  9 + flex-flow: column;
  10 +}
  11 +.top{
  12 + display: flex;
  13 + align-items: center;
  14 + justify-content: center;
  15 + background: #fff;
  16 + border-top: 1px solid #EBEBEB;
  17 + border-bottom: 1px solid #EBEBEB;
  18 + padding: 24rpx 0;
  19 +}
  20 +.top_box{
  21 + display: flex;
  22 + align-items: center;
  23 + width:686rpx;
  24 + height:60rpx;
  25 + background:rgba(237,238,242,1);
  26 + border-radius:10rpx;
  27 + box-sizing: border-box;
  28 + padding: 0 24rpx;
  29 +}
  30 +.top_pic{
  31 +
  32 + width:28rpx;
  33 + height:28rpx;
  34 + display: flex;
  35 +}
  36 +.top_pic image{
  37 + width: 100%;
  38 + height: 100%;
  39 +}
  40 +.top_box input{
  41 + margin-left: 25rpx;
  42 + width: 100%;
  43 + height: 100%;
  44 +
  45 + font-size:26rpx;
  46 + font-family:PingFang-SC-Medium;
  47 + font-weight:500;
  48 + color:#000;
  49 +}
  50 +
  51 +.about{
  52 +
  53 + font-size:30rpx;
  54 + font-family:PingFang-SC-Medium;
  55 + font-weight:500;
  56 + color:rgba(26,26,26,1);
  57 + border-bottom: 1px solid #EBEBEB;
  58 + padding: 24rpx 34rpx 24rpx 55rpx;
  59 + position: relative;
  60 + display: flex;
  61 + align-items: center;
  62 +}
  63 +.about::before{
  64 + content: "";
  65 + width:6rpx;
  66 + height:24rpx;
  67 + background:rgba(255,102,0,1);
  68 + position: absolute;
  69 + left: 34rpx;
  70 +}
  71 +
  72 +/* 条目 */
  73 +.items{
  74 + display: flex;
  75 + flex-flow: column;
  76 +}
  77 +.item{
  78 + /* margin-top: 1px; */
  79 + display: flex;
  80 + flex-flow: column;
  81 + background: #fff;
  82 + padding: 40rpx;
  83 + border-bottom: 1px solid #EBEBEB;
  84 +}
  85 +.item_top{
  86 + display: flex;
  87 + justify-content: space-between;
  88 +}
  89 +.item_top_left{
  90 + display: flex;
  91 +}
  92 +.item_top_left_pic{
  93 + width:72rpx;
  94 + height:72rpx;
  95 + border-radius:2rpx;
  96 + display: flex;
  97 +}
  98 +.item_top_left_pic image{
  99 + width: 100%;
  100 + height: 100%;
  101 +}
  102 +.item_top_left_text{
  103 + margin-left: 23rpx;
  104 + display: flex;
  105 + flex-flow: column;
  106 +}
  107 +.text_top{
  108 + font-size:32rpx;
  109 + font-family:PingFang-SC-Medium;
  110 + font-weight:500;
  111 + color:rgba(26,26,26,1);
  112 +}
  113 +.text_bottom{
  114 + margin-top: 17rpx;
  115 + font-size:28rpx;
  116 + font-family:PingFang-SC-Medium;
  117 + font-weight:500;
  118 + color:rgba(255,59,40,1);
  119 +}
  120 +.item_top_right{
  121 + width:140rpx;
  122 + height:66rpx;
  123 + line-height: 66rpx;
  124 + text-align: center;
  125 + border:1px solid rgba(255,102,0,1);
  126 + border-radius:33rpx;
  127 +
  128 +
  129 + font-size:28rpx;
  130 + font-family:PingFang-SC-Medium;
  131 + font-weight:500;
  132 + color:rgba(255,102,0,1);
  133 +}
  134 +.item_bottom{
  135 + margin-top: 20rpx;
  136 + margin-left: 80rpx;
  137 + display: flex;
  138 + align-items: center;
  139 + justify-content: space-between;
  140 + font-size:26rpx;
  141 + font-family:PingFang-SC-Medium;
  142 + font-weight:500;
  143 + color:rgba(153,153,153,1);
  144 +}
  145 +.item_bottom_left{
  146 + display: flex;
  147 + align-items: center;
  148 +
  149 +}
  150 +.item_bottom_left_pic{
  151 + width:22rpx;
  152 + height:22rpx;
  153 + display: flex;
  154 + margin-right: 13rpx;
  155 +}
  156 +.item_bottom_left_pic image{
  157 + width: 100%;
  158 + height: 100%;
  159 +}
  160 +.item_bottom_right{
  161 + display: flex;
  162 + align-items: center;
  163 +}
  164 +.item_bottom_left_pic{
  165 + margin-left: 14rpx;
  166 + width:20rpx;
  167 + height:24rpx;
  168 + display: flex;
  169 +}
  170 +.item_bottom_left_pic image{
  171 + width: 100%;
  172 + height: 100%;
  173 +}
  174 +.bottom{
  175 + margin-top: 23rpx;
  176 + text-align: center;
  177 + font-size:24rpx;
  178 + font-family:PingFang-SC-Regular;
  179 + font-weight:400;
  180 + color:rgba(153,153,153,1);
  181 +
  182 +}
  1 +// pages/index/search_4/search_4.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "搜索岗位/招聘者"
  4 +}
  1 +
  2 +
  3 +<view class='container'>
  4 + <view class='top'>
  5 + <view class='top_box'>
  6 + <view class='top_pic'>
  7 + <image src='../../../img/aicon_02@2x.png'></image>
  8 + </view>
  9 + <input placeholder='搜索岗位/招聘者'></input>
  10 + </view>
  11 + </view>
  12 +
  13 + <!-- 相关招聘者 -->
  14 + <view class='about'>
  15 + 相关招聘者
  16 + </view>
  17 + <!-- 条目 -->
  18 + <view class='items'>
  19 +
  20 + <view class='item'>
  21 + <!-- 头部 -->
  22 + <view class='item_top'>
  23 + <view class='item_top_left'>
  24 + <view class='item_top_left_pic'>
  25 + <image src='/img/aicon_08@2x.png'></image>
  26 + </view>
  27 + <view class='item_top_left_text'>
  28 + <view class='text_top'>酒店服务员</view>
  29 + <view class='text_bottom_text'>2个岗位在招</view>
  30 + </view>
  31 + </view>
  32 + </view>
  33 +
  34 +
  35 + </view>
  36 +
  37 +
  38 + </view>
  39 +
  40 + <!-- 颜色条 -->
  41 + <view class='color_line'></view>
  42 +
  43 +
  44 + <!-- 相关岗位 -->
  45 + <view class='about'>
  46 + 相关岗位
  47 + </view>
  48 +
  49 + <!-- 条目 -->
  50 + <view class='items'>
  51 +
  52 + <view class='item'>
  53 + <!-- 头部 -->
  54 + <view class='item_top'>
  55 + <view class='item_top_left'>
  56 + <view class='item_top_left_pic'>
  57 + <image src='/img/aicon_08@2x.png'></image>
  58 + </view>
  59 + <view class='item_top_left_text'>
  60 + <view class='text_top'>酒店服务员</view>
  61 + <view class='text_bottom'>4000-5000元/月</view>
  62 + </view>
  63 + </view>
  64 +
  65 + <view class='item_top_right'>
  66 + 报名
  67 + </view>
  68 + </view>
  69 + <!-- 底部 -->
  70 + <view class='item_bottom'>
  71 + <view class='item_bottom_left'>
  72 + <view class='item_bottom_left_pic'>
  73 + <image src='/img/aicon_10@2x.png'></image>
  74 + </view>
  75 + <!-- 名字 -->
  76 + <view>王思迪</view>
  77 + </view>
  78 +
  79 + <view class='item_bottom_right'>
  80 + <view class='item_bottom_left_pic'>
  81 + <image src='/img/aicon_09@2x.png'></image>
  82 + </view>
  83 + <view>南开区 3.2km</view>
  84 + </view>
  85 + </view>
  86 + </view>
  87 + <view class='item'>
  88 + <!-- 头部 -->
  89 + <view class='item_top'>
  90 + <view class='item_top_left'>
  91 + <view class='item_top_left_pic'>
  92 + <image src='/img/aicon_08@2x.png'></image>
  93 + </view>
  94 + <view class='item_top_left_text'>
  95 + <view class='text_top'>酒店服务员</view>
  96 + <view class='text_bottom'>4000-5000元/月</view>
  97 + </view>
  98 + </view>
  99 +
  100 + <view class='item_top_right'>
  101 + 报名
  102 + </view>
  103 + </view>
  104 + <!-- 底部 -->
  105 + <view class='item_bottom'>
  106 + <view class='item_bottom_left'>
  107 + <view class='item_bottom_left_pic'>
  108 + <image src='/img/aicon_10@2x.png'></image>
  109 + </view>
  110 + <!-- 名字 -->
  111 + <view>王思迪</view>
  112 + </view>
  113 +
  114 + <view class='item_bottom_right'>
  115 + <view class='item_bottom_left_pic'>
  116 + <image src='/img/aicon_09@2x.png'></image>
  117 + </view>
  118 + <view>南开区 3.2km</view>
  119 + </view>
  120 + </view>
  121 + </view>
  122 +
  123 + </view>
  124 +
  125 + <!-- 提示 -->
  126 + <view class='bottom'>
  127 + 没有更多内容了
  128 + </view>
  129 +
  130 +</view>
  1 +
  2 +
  3 +page{
  4 + line-height: 1;
  5 + /* background: #EBEBEB; */
  6 +}
  7 +.container{
  8 + display: flex;
  9 + flex-flow: column;
  10 +}
  11 +.top{
  12 + display: flex;
  13 + align-items: center;
  14 + justify-content: center;
  15 + background: #fff;
  16 + border-top: 1px solid #EBEBEB;
  17 + border-bottom: 1px solid #EBEBEB;
  18 + padding: 24rpx 0;
  19 +}
  20 +.top_box{
  21 + display: flex;
  22 + align-items: center;
  23 + width:686rpx;
  24 + height:60rpx;
  25 + background:rgba(237,238,242,1);
  26 + border-radius:10rpx;
  27 + box-sizing: border-box;
  28 + padding: 0 24rpx;
  29 +}
  30 +.top_pic{
  31 +
  32 + width:28rpx;
  33 + height:28rpx;
  34 + display: flex;
  35 +}
  36 +.top_pic image{
  37 + width: 100%;
  38 + height: 100%;
  39 +}
  40 +.top_box input{
  41 + margin-left: 25rpx;
  42 + width: 100%;
  43 + height: 100%;
  44 +
  45 + font-size:26rpx;
  46 + font-family:PingFang-SC-Medium;
  47 + font-weight:500;
  48 + color:#000;
  49 +}
  50 +
  51 +.about{
  52 +
  53 + font-size:30rpx;
  54 + font-family:PingFang-SC-Medium;
  55 + font-weight:500;
  56 + color:rgba(26,26,26,1);
  57 + border-bottom: 1px solid #EBEBEB;
  58 + padding: 24rpx 34rpx 24rpx 55rpx;
  59 + position: relative;
  60 + display: flex;
  61 + align-items: center;
  62 +}
  63 +.about::before{
  64 + content: "";
  65 + width:6rpx;
  66 + height:24rpx;
  67 + background:rgba(255,102,0,1);
  68 + position: absolute;
  69 + left: 34rpx;
  70 +}
  71 +
  72 +/* 条目 */
  73 +.items{
  74 + display: flex;
  75 + flex-flow: column;
  76 +}
  77 +.item{
  78 + /* margin-top: 1px; */
  79 + display: flex;
  80 + flex-flow: column;
  81 + background: #fff;
  82 + padding: 40rpx;
  83 + border-bottom: 1px solid #EBEBEB;
  84 +}
  85 +.item_top{
  86 + display: flex;
  87 + justify-content: space-between;
  88 +}
  89 +.item_top_left{
  90 + display: flex;
  91 +}
  92 +.item_top_left_pic{
  93 + width:72rpx;
  94 + height:72rpx;
  95 + border-radius:2rpx;
  96 + display: flex;
  97 +}
  98 +.item_top_left_pic image{
  99 + width: 100%;
  100 + height: 100%;
  101 +}
  102 +.item_top_left_text{
  103 + margin-left: 23rpx;
  104 + display: flex;
  105 + flex-flow: column;
  106 +}
  107 +.text_top{
  108 + font-size:32rpx;
  109 + font-family:PingFang-SC-Medium;
  110 + font-weight:500;
  111 + color:rgba(26,26,26,1);
  112 +}
  113 +.text_bottom{
  114 + margin-top: 17rpx;
  115 + font-size:28rpx;
  116 + font-family:PingFang-SC-Medium;
  117 + font-weight:500;
  118 + color:rgba(255,59,40,1);
  119 +}
  120 +.item_top_right{
  121 + width:140rpx;
  122 + height:66rpx;
  123 + line-height: 66rpx;
  124 + text-align: center;
  125 + border:1px solid rgba(255,102,0,1);
  126 + border-radius:33rpx;
  127 +
  128 +
  129 + font-size:28rpx;
  130 + font-family:PingFang-SC-Medium;
  131 + font-weight:500;
  132 + color:rgba(255,102,0,1);
  133 +}
  134 +.item_bottom{
  135 + margin-top: 20rpx;
  136 + margin-left: 80rpx;
  137 + display: flex;
  138 + align-items: center;
  139 + justify-content: space-between;
  140 + font-size:26rpx;
  141 + font-family:PingFang-SC-Medium;
  142 + font-weight:500;
  143 + color:rgba(153,153,153,1);
  144 +}
  145 +.item_bottom_left{
  146 + display: flex;
  147 + align-items: center;
  148 +
  149 +}
  150 +.item_bottom_left_pic{
  151 + width:22rpx;
  152 + height:22rpx;
  153 + display: flex;
  154 + margin-right: 13rpx;
  155 +}
  156 +.item_bottom_left_pic image{
  157 + width: 100%;
  158 + height: 100%;
  159 +}
  160 +.item_bottom_right{
  161 + display: flex;
  162 + align-items: center;
  163 +}
  164 +.item_bottom_left_pic{
  165 + margin-left: 14rpx;
  166 + width:20rpx;
  167 + height:24rpx;
  168 + display: flex;
  169 +}
  170 +.item_bottom_left_pic image{
  171 + width: 100%;
  172 + height: 100%;
  173 +}
  174 +.bottom{
  175 + margin-top: 23rpx;
  176 + text-align: center;
  177 + font-size:24rpx;
  178 + font-family:PingFang-SC-Regular;
  179 + font-weight:400;
  180 + color:rgba(153,153,153,1);
  181 +
  182 +}
  183 +.text_bottom_text{
  184 + margin-top: 17rpx;
  185 + font-size:28rpx;
  186 + font-family:PingFang-SC-Medium;
  187 + font-weight:500;
  188 + color:rgba(255,102,0,1);
  189 +}
  190 +.color_line{
  191 + width:750rpx;
  192 + height:14rpx;
  193 + background:rgba(242,242,242,1);
  194 +}
  1 +// pages/index/search_5/search_5.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "搜索岗位/招聘者"
  4 +}
  1 +
  2 +
  3 +<view class='container'>
  4 + <view class='top'>
  5 + <view class='top_box'>
  6 + <view class='top_pic'>
  7 + <image src='../../../img/aicon_02@2x.png'></image>
  8 + </view>
  9 + <input placeholder='搜索岗位/招聘者'></input>
  10 + </view>
  11 + </view>
  12 +
  13 + <view class='mid'>
  14 + <view class='pic'>
  15 + <image src='../../../img/aicon_58@2x.png'></image>
  16 + </view>
  17 + <!-- 文字 -->
  18 + <view class='pic_text'>
  19 + 暂无该岗位/招聘者/内容哦,
  20 + 请换其他关键词试一试
  21 +
  22 + </view>
  23 + </view>
  24 +
  25 +
  26 +
  27 +
  28 +
  29 + <!-- 提示 -->
  30 + <!-- <view class='bottom'>
  31 + 没有更多内容了
  32 + </view> -->
  33 +
  34 +</view>
  1 +
  2 +
  3 +page{
  4 + line-height: 1;
  5 + /* background: #EBEBEB; */
  6 +}
  7 +.container{
  8 + display: flex;
  9 + flex-flow: column;
  10 +}
  11 +.top{
  12 + display: flex;
  13 + align-items: center;
  14 + justify-content: center;
  15 + background: #fff;
  16 + border-top: 1px solid #EBEBEB;
  17 + border-bottom: 1px solid #EBEBEB;
  18 + padding: 24rpx 0;
  19 +}
  20 +.top_box{
  21 + display: flex;
  22 + align-items: center;
  23 + width:686rpx;
  24 + height:60rpx;
  25 + background:rgba(237,238,242,1);
  26 + border-radius:10rpx;
  27 + box-sizing: border-box;
  28 + padding: 0 24rpx;
  29 +}
  30 +.top_pic{
  31 +
  32 + width:28rpx;
  33 + height:28rpx;
  34 + display: flex;
  35 +}
  36 +.top_pic image{
  37 + width: 100%;
  38 + height: 100%;
  39 +}
  40 +.top_box input{
  41 + margin-left: 25rpx;
  42 + width: 100%;
  43 + height: 100%;
  44 +
  45 + font-size:26rpx;
  46 + font-family:PingFang-SC-Medium;
  47 + font-weight:500;
  48 + color:#000;
  49 +}
  50 +
  51 +.mid{
  52 + margin-top: 143rpx;
  53 + display: flex;
  54 + align-items: center;
  55 + justify-content: center;
  56 + position: relative;
  57 +}
  58 +.pic{
  59 + width:629rpx;
  60 + height:463rpx;
  61 + display: flex;
  62 +}
  63 +.pic image{
  64 + width: 100%;
  65 + height: 100%;
  66 +}
  67 +.pic_text{
  68 + width: 334rpx;
  69 + /* text-align: center; */
  70 + position: absolute;
  71 + bottom: 0;
  72 + font-size:28rpx;
  73 + font-family:PingFang-SC-Medium;
  74 + font-weight:500;
  75 + color:rgba(153,153,153,1);
  76 + line-height: 42rpx;
  77 +}
  78 +
  79 +.bottom{
  80 + margin-top: 23rpx;
  81 + text-align: center;
  82 + font-size:24rpx;
  83 + font-family:PingFang-SC-Regular;
  84 + font-weight:400;
  85 + color:rgba(153,153,153,1);
  86 +
  87 +}
  88 +.text_bottom_text{
  89 + margin-top: 17rpx;
  90 + font-size:28rpx;
  91 + font-family:PingFang-SC-Medium;
  92 + font-weight:500;
  93 + color:rgba(255,102,0,1);
  94 +}
  95 +.color_line{
  96 + width:750rpx;
  97 + height:14rpx;
  98 + background:rgba(242,242,242,1);
  99 +}
  1 +Page({
  2 +
  3 + /**
  4 + * 页面的初始数据
  5 + */
  6 + data: {
  7 +
  8 + },
  9 +
  10 + /**
  11 + * 生命周期函数--监听页面加载
  12 + */
  13 + onLoad: function (options) {
  14 +
  15 + },
  16 +
  17 + /**
  18 + * 生命周期函数--监听页面初次渲染完成
  19 + */
  20 + onReady: function () {
  21 +
  22 + },
  23 +
  24 + /**
  25 + * 生命周期函数--监听页面显示
  26 + */
  27 + onShow: function () {
  28 +
  29 + },
  30 +
  31 + /**
  32 + * 生命周期函数--监听页面隐藏
  33 + */
  34 + onHide: function () {
  35 +
  36 + },
  37 +
  38 + /**
  39 + * 生命周期函数--监听页面卸载
  40 + */
  41 + onUnload: function () {
  42 +
  43 + },
  44 +
  45 + /**
  46 + * 页面相关事件处理函数--监听用户下拉动作
  47 + */
  48 + onPullDownRefresh: function () {
  49 +
  50 + },
  51 +
  52 + /**
  53 + * 页面上拉触底事件的处理函数
  54 + */
  55 + onReachBottom: function () {
  56 +
  57 + },
  58 +
  59 + /**
  60 + * 用户点击右上角分享
  61 + */
  62 + onShareAppMessage: function () {
  63 +
  64 + }
  65 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "搜索岗位/招聘者"
  4 +}
  1 +
  2 +<view class='container'>
  3 + <!-- 筛选 -->
  4 + <view class='select'>
  5 + <view class='select_list'>
  6 + <view>地区</view>
  7 + <view class='select_list_pic'>
  8 + <image src='/img/aicon_11@2x.png'></image>
  9 + </view>
  10 + </view>
  11 + <view class='select_list'>
  12 + <view>岗位</view>
  13 + <view class='select_list_pic'>
  14 + <image src='/img/aicon_11@2x.png'></image>
  15 + </view>
  16 + </view>
  17 + <view class='select_list'>
  18 + <view>推荐排序</view>
  19 + <view class='select_list_pic'>
  20 + <image src='/img/aicon_11@2x.png'></image>
  21 + </view>
  22 + </view>
  23 + <view class='select_list'>
  24 + <view>筛选</view>
  25 + <view class='select_list_pic_big'>
  26 + <image src='/img/aicon_12@2x.png'></image>
  27 + </view>
  28 + </view>
  29 + </view>
  30 +
  31 +</view>
  1 +
  2 +page{
  3 +
  4 +}
  5 +.container{
  6 + display: flex;
  7 + flex-flow: column;
  8 +}
  9 +.select{
  10 + margin-top: 14rpx;
  11 + display: flex;
  12 + justify-content: space-between;
  13 + padding: 28rpx 54rpx;
  14 + background: #fff;
  15 +}
  16 +.select_list{
  17 + display: flex;
  18 + align-items: center;
  19 + margin-left: 9rpx;
  20 + font-size:26rpx;
  21 + font-family:PingFang-SC-Regular;
  22 + font-weight:400;
  23 + color:rgba(26,26,26,1);
  24 +}
  25 +.select_list_pic{
  26 + margin-left: 9rpx;
  27 + width: 12rpx;
  28 + height: 8rpx;
  29 + display: flex;
  30 +}
  31 +.select_list_pic image{
  32 + width: 100%;
  33 + height: 100%;
  34 +}
  35 +.select_list_pic_big{
  36 + margin-left: 8rpx;
  37 + width:18rpx;
  38 + height:18rpx;
  39 + display: flex;
  40 +}
  41 +.select_list_pic_big image{
  42 + width: 100%;
  43 + height: 100%;
  44 +}
  1 +// pages/inviteFriends/inviteFriends.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "主页"
  4 +}
  1 +
  2 +<view class='container'>
  3 + <view class='top'>
  4 + <image src='../../img/aicon_56@2x.png'></image>
  5 + <view class='top_t'>
  6 + <view class='top_t_text'>累计获得奖励金额(元)</view>
  7 + <view class='top_t_num'>252</view>
  8 + </view>
  9 + <view class='top_right'>
  10 + <view class='top_right_icon'>
  11 + <image src='../../img/aicon_34@2x.png'></image>
  12 + </view>
  13 + <view class='top_right_text'>财务记录</view>
  14 + </view>
  15 + </view>
  16 +
  17 + <!-- 取现盒子 -->
  18 + <view class='mid'>
  19 + <view class='mid_pic'>
  20 + <image src='../../img/aicon_35@2x.png'></image>
  21 +
  22 + <view class='mid_content'>
  23 + <view class='mid_content_top'>可提现金额(元)</view>
  24 + <view class='mid_content_mid'>245</view>
  25 + <view class='mid_content_bottom'>已提现金额(元)<span class='fontSize'>130</span></view>
  26 + </view>
  27 + <!-- 提现 -->
  28 + <view class='mid_deposit'>
  29 + <view class='mid_deposit_text'>提现</view>
  30 + <view class='mid_deposit_icon'>
  31 + <image src='../../img/aicon_33@2x.png'></image>
  32 + </view>
  33 + </view>
  34 + </view>
  35 + </view>
  36 +
  37 + <!-- 邀请盒子 -->
  38 + <view class='invite'>
  39 + <view class='invite_top'>
  40 + <view class='invite_top_select color_yellow'>有效邀请(15人)</view>
  41 + <view class='invite_top_select '>无效邀请(15人)</view>
  42 +
  43 + </view>
  44 + <!-- 列表 -->
  45 + <view class='invite_box'>
  46 + <view class='invite_item'>
  47 + <view class='invite_item_left'>
  48 + <view class='invite_item_left_icon'>
  49 + <image src='../../img/aicon_49@2x.png'></image>
  50 + </view>
  51 + <view class='invite_item_left_text'>
  52 + 宇宙无敌小可爱
  53 + </view>
  54 + </view>
  55 +
  56 + <view class='invite_item_right'>
  57 + 已报名2次
  58 + </view>
  59 + </view>
  60 +
  61 + <view class='invite_item'>
  62 + <view class='invite_item_left'>
  63 + <view class='invite_item_left_icon'>
  64 + <image src='../../img/aicon_49@2x.png'></image>
  65 + </view>
  66 + <view class='invite_item_left_text'>
  67 + 宇宙无敌小可爱
  68 + </view>
  69 + </view>
  70 +
  71 + <view class='invite_item_right'>
  72 + 已报名2次
  73 + </view>
  74 + </view>
  75 + </view>
  76 +
  77 +
  78 + <!-- 查看更多 -->
  79 + <view class='invite_bottom'>
  80 + <view class='invite_bottom_text'>查看更多</view>
  81 + <view class='invite_bottom_icon'>
  82 + <image src='../../img/aicon_01@2x.png'></image>
  83 + </view>
  84 + </view>
  85 + </view>
  86 +
  87 +</view>
  1 +
  2 +page{
  3 + line-height: 1;
  4 +}
  5 +
  6 +.container{
  7 + width: 750rpx;
  8 + display: flex;
  9 + flex-flow: column;
  10 + justify-content: center;
  11 + align-items: center;
  12 + position: relative;
  13 +}
  14 +.top{
  15 + width:750rpx;
  16 + height:317rpx;
  17 + display: flex;
  18 + position: relative;
  19 +}
  20 +.top image{
  21 + width: 100%;
  22 + height: 100%;
  23 +}
  24 +.top_t{
  25 + margin-top: 39rpx;
  26 + width: 100%;
  27 + position: absolute;
  28 + font-size:28rpx;
  29 + font-family:PingFang-SC-Bold;
  30 + font-weight:bold;
  31 + color:rgba(255,255,255,0.8);
  32 + display: flex;
  33 + flex-flow: column;
  34 + align-items: center;
  35 + justify-content: center;
  36 +
  37 +}
  38 +.top_t_num{
  39 + margin-top: 15rpx;
  40 + font-size:80rpx;
  41 + font-family:Roboto-Medium;
  42 + font-weight:500;
  43 + color:rgba(255,255,255,1);
  44 +}
  45 +.top_right{
  46 + position: absolute;
  47 + top: 32rpx;
  48 + right: 32rpx;
  49 + width:158rpx;
  50 + height:43rpx;
  51 + background:rgba(255,188,81,1);
  52 + border-radius:22rpx;
  53 + display: flex;
  54 + align-items: center;
  55 + justify-content: center;
  56 +
  57 +}
  58 +.top_right_icon{
  59 + width:16rpx;
  60 + height:18rpx;
  61 + display: flex;
  62 +}
  63 +.top_right_icon image{
  64 + width: 100%;
  65 + height: 100%;
  66 +}
  67 +.top_right_text{
  68 + margin-left: 10rpx;
  69 + font-size:24rpx;
  70 + font-family:PingFang-SC-Medium;
  71 + font-weight:500;
  72 + color:rgba(255,255,255,1);
  73 +}
  74 +.mid{
  75 + margin-top: 180rpx;
  76 +
  77 + display: flex;
  78 + position: absolute;
  79 + top: -30rpx;
  80 +}
  81 +.mid_pic{
  82 + width: 742rpx;
  83 + height: 350rpx;
  84 + display: flex;
  85 + position: relative;
  86 +}
  87 +.mid_pic image{
  88 + width: 100%;
  89 + height: 100%;
  90 +}
  91 +.mid_content{
  92 + display: flex;
  93 + flex-flow: column;
  94 + position: absolute;
  95 + color: #fff;
  96 + left: 60rpx;
  97 + top: 70rpx;
  98 +}
  99 +.mid_content_top{
  100 + font-size:24rpx;
  101 + font-family:PingFang-SC-Medium;
  102 + font-weight:500;
  103 + color:rgba(255,255,255,0.8);
  104 +}
  105 +.mid_content_mid{
  106 + margin-top: 20rpx;
  107 + font-size:80rpx;
  108 + font-family:Roboto-Medium;
  109 + font-weight:500;
  110 + color:rgba(255,255,255,1);
  111 + text-shadow:0rpx 12rpx 14rpx rgba(221,140,34,0.3);
  112 +
  113 + background:linear-gradient(0deg,rgba(255,255,255,1) 0%, rgba(255,235,200,1) 100%);
  114 + -webkit-background-clip:text;
  115 + -webkit-text-fill-color:transparent;
  116 +}
  117 +.mid_content_bottom{
  118 + margin-top: 30rpx;
  119 + font-size:24rpx;
  120 + font-family:PingFang-SC-Medium;
  121 + font-weight:500;
  122 + color:rgba(255,255,255,0.8);
  123 +}
  124 +
  125 +.mid_deposit{
  126 + position: absolute;
  127 + top: 100rpx;
  128 + right: 30rpx;
  129 + width:120rpx;
  130 + height:54rpx;
  131 + background:rgba(255,255,255,1);
  132 + border-radius:27rpx 0rpx 0rpx 27rpx;
  133 + display: flex;
  134 + align-items: center;
  135 +
  136 +}
  137 +.mid_deposit_text{
  138 + margin-left: 28rpx;
  139 + font-size:28rpx;
  140 + font-family:PingFang-SC-Medium;
  141 + font-weight:500;
  142 + color:rgba(254,147,70,1);
  143 +}
  144 +.mid_deposit_icon{
  145 + margin-left: 14rpx;
  146 + width:12rpx;
  147 + height:20rpx;
  148 + display: flex;
  149 +}
  150 +.mid_deposit_icon image{
  151 + width: 100%;
  152 + height: 100%;
  153 +}
  154 +.invite{
  155 + margin-top: 160rpx;
  156 + width:686rpx;
  157 + /* height:788rpx; */
  158 + background:rgba(253,255,255,1);
  159 + box-shadow:0rpx 8rpx 49rpx 0rpx rgba(0, 0, 0, 0.1);
  160 + border-radius:22px;
  161 +
  162 +}
  163 +.invite_top{
  164 + display: flex;
  165 + justify-content: space-between;
  166 + padding: 30rpx 60rpx;
  167 + border-bottom: 1px solid #EBEBEB;
  168 +}
  169 +.invite_top_select{
  170 +
  171 + font-size:30rpx;
  172 + font-family:PingFang-SC-Bold;
  173 + font-weight:bold;
  174 + color:#EBEBEB;
  175 +}
  176 +.color_yellow{
  177 + color: #FFAA00;
  178 + position: relative;
  179 +}
  180 +.color_yellow::before{
  181 + content:'';
  182 + position: absolute;
  183 + bottom: -30rpx;
  184 + left: -60rpx;
  185 + width: 365rpx;
  186 + height: 1px;
  187 + background: #FFAA00;
  188 +}
  189 +.invite_item{
  190 + display: flex;
  191 + justify-content: space-between;
  192 + align-items: center;
  193 + box-sizing: border-box;
  194 + padding: 15rpx 24rpx;
  195 +}
  196 +.invite_item_left{
  197 + display: flex;
  198 + align-items: center;
  199 +}
  200 +.invite_item_left_icon{
  201 + width: 74rpx;
  202 + height: 74rpx;
  203 + display: flex;
  204 +}
  205 +.invite_item_left_icon image{
  206 + width: 100%;
  207 + height: 100%;
  208 +}
  209 +.invite_item_left_text{
  210 + margin-left: 26rpx;
  211 + font-size:28rpx;
  212 + font-family:PingFang-SC-Medium;
  213 + font-weight:500;
  214 + color:rgba(26,26,26,1);
  215 +}
  216 +.invite_item_right{
  217 + font-size:28rpx;
  218 + font-family:PingFang-SC-Medium;
  219 + font-weight:500;
  220 + color:rgba(255,170,0,1);
  221 +}
  222 +.invite_box{
  223 + margin-top: 15rpx;
  224 +}
  225 +.invite_bottom{
  226 + display: flex;
  227 + align-items: center;
  228 + justify-content: center;
  229 + margin-bottom: 24rpx;
  230 +}
  231 +.invite_bottom_text{
  232 + font-size:28rpx;
  233 + font-family:PingFang-SC-Medium;
  234 + font-weight:500;
  235 + color:rgba(102,102,102,1);
  236 +}
  237 +.invite_bottom_icon{
  238 + margin-left: 17rpx;
  239 + width: 18rpx;
  240 + height: 10rpx;
  241 + display: flex;
  242 +}
  243 +.invite_bottom_icon image{
  244 + width: 100%;
  245 + height: 100%;
  246 +}
  1 +// pages/mine/mine.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {}
  3 +}
  1 +<!--pages/mine/mine.wxml-->
  2 +<text>pages/mine/mine.wxml</text>
  1 +/* pages/mine/mine.wxss */
  1 +// pages/mine/perfectInfor/perfectInfor.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "完善个人资料",
  4 + "navigationBarBackgroundColor": "white",
  5 + "navigationBarTextStyle": "black"
  6 +}
  1 +<!--pages/mine/perfectInfor/perfectInfor.wxml-->
  2 +
  3 +<view class='container'>
  4 + <view class='top'>
  5 + <view class='top_left'></view>
  6 + </view>
  7 +</view>
  1 +/* pages/mine/perfectInfor/perfectInfor.wxss */
  2 +page{
  3 + background: #F5F5F5;
  4 +}
  5 +.container{
  6 + width: 750rpx;
  7 + display: flex;
  8 + flex-flow: column;
  9 +}
  10 +.top{
  11 + display: flex;
  12 + justify-content: space-between
  13 +}
  1 +// pages/myMessage/myMessage.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "我的消息"
  4 +}
  1 +<!--pages/myMessage/myMessage.wxml-->
  2 +<view class='container'>
  3 + <view class='item'>
  4 + <view class='item_left'>
  5 + <view class='item_left_pic'>
  6 + <image src='../../img/aicon_48@2x.png'></image>
  7 + <view class='icon_dot'></view>
  8 + </view>
  9 + <view class='item_left_text'>
  10 + <view class='item_left_text_top'>报名成功</view>
  11 + <view class='item_left_text_bottom'>报名成功啦</view>
  12 + </view>
  13 + </view>
  14 +
  15 + <view class='item_right'>
  16 + <image src='../../img/right.png'></image>
  17 + </view>
  18 + </view>
  19 +
  20 + <view class='item'>
  21 + <view class='item_left'>
  22 + <view class='item_left_pic'>
  23 + <image src='../../img/aicon_48@2x.png'></image>
  24 + </view>
  25 + <view class='item_left_text'>
  26 + <view class='item_left_text_top'>岗位审核通过</view>
  27 + <view class='item_left_text_bottom'>您发布的岗位审核通过啦</view>
  28 + </view>
  29 + </view>
  30 +
  31 + <view class='item_right'>
  32 + <image src='../../img/right.png'></image>
  33 + </view>
  34 + </view>
  35 +
  36 + <view class='item'>
  37 + <view class='item_left'>
  38 + <view class='item_left_pic'>
  39 + <image src='../../img/aicon_48@2x.png'></image>
  40 + </view>
  41 + <view class='item_left_text'>
  42 + <view class='item_left_text_top'>您的岗位下线啦</view>
  43 + <view class='item_left_text_bottom'>岗位下线时间已到啦,请及时进行处理,岗位下线时间已到啦,请及时进行处理</view>
  44 + </view>
  45 + </view>
  46 +
  47 + <view class='item_right'>
  48 + <image src='../../img/right.png'></image>
  49 + </view>
  50 + </view>
  51 +</view>
  1 +/* pages/myMessage/myMessage.wxss */
  2 +
  3 +page{
  4 +
  5 +}
  6 +
  7 +.container{
  8 + display: flex;
  9 + flex-flow: column;
  10 +}
  11 +.item{
  12 + display: flex;
  13 + align-items: center;
  14 + padding: 24rpx 28rpx;
  15 + justify-content: space-between;
  16 + border-bottom: 1px solid #EBEBEB;
  17 +}
  18 +.item_left{
  19 + display: flex;
  20 +}
  21 +.item_left_pic{
  22 + width:74rpx;
  23 + height:74rpx;
  24 + display: flex;
  25 + position: relative;
  26 +}
  27 +.item_left_pic image{
  28 + width: 100%;
  29 + height: 100%;
  30 +}
  31 +.item_left_text{
  32 + display: flex;
  33 + flex-flow: column;
  34 + margin-left: 30rpx;
  35 +}
  36 +.item_left_text_top{
  37 + font-size:30rpx;
  38 + font-family:PingFang-SC-Bold;
  39 + font-weight:bold;
  40 + color:rgba(51,51,51,1);
  41 +}
  42 +.item_left_text_bottom{
  43 + width: 550rpx;
  44 + font-size:26rpx;
  45 + font-family:PingFang-SC-Medium;
  46 + font-weight:500;
  47 + color:rgba(153,153,153,1);
  48 + box-sizing: border-box;
  49 + text-overflow: ellipsis;
  50 + display: -webkit-box;
  51 + -webkit-box-orient: vertical;
  52 + -webkit-line-clamp: 1;
  53 + overflow: hidden;
  54 +}
  55 +.item_right{
  56 + width:12rpx;
  57 + height:20rpx;
  58 + display: flex;
  59 +}
  60 +.item_right image{
  61 + width: 100%;
  62 + height: 100%;
  63 +}
  64 +.icon_dot{
  65 + width:10rpx;
  66 + height:10rpx;
  67 + background:rgba(255,102,0,1);
  68 + border-radius:50%;
  69 + position: absolute;
  70 + right: -5rpx;
  71 +}
  1 +// pages/myMessage2/myMessage2.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "消息通知"
  4 +}
  1 +
  2 +<view class='container'>
  3 + <view class='time'>
  4 + 2019-02-28 11:23
  5 + </view>
  6 +
  7 + <view class='content'>
  8 + 怎么查微信聊天记录已经成为调查行业的另一项重要业务 当今全世界最流行的聊天工具之一微信,自从2011年面世。怎么查微信聊天记录已经成为调查行业的另一项重要业务 当今全世界最流行的聊天工具之一微信。
  9 +2011年面世。
  10 +
  11 + </view>
  12 +
  13 +
  14 +</view>
  1 +/* pages/myMessage2/myMessage2.wxss */
  2 +
  3 +page{
  4 + background: #F2F2F2;
  5 + line-height: 1;
  6 +}
  7 +.container{
  8 + display: flex;
  9 + flex-flow: column;
  10 + align-items: center;
  11 + justify-content: center;
  12 +}
  13 +.time{
  14 + margin-top: 36rpx;
  15 + font-size: 24rpx;
  16 + color: #999999;
  17 +}
  18 +.content{
  19 + margin-top: 23rpx;
  20 + width:616rpx;
  21 + background:rgba(255,255,255,1);
  22 + box-shadow:0rpx 4rpx 12rpx 0px rgba(0, 0, 0, 0.06);
  23 + border-radius:10rpx;
  24 +
  25 + font-size: 26rpx;
  26 + line-height: 40rpx;
  27 + box-sizing: border-box;
  28 + padding: 37rpx 54rpx 44rpx 44rpx;
  29 +}
  1 +// pages/myResume/myResume.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "报名记录"
  4 +}
  1 +
  2 +<view class='container'>
  3 +
  4 + <view class='LineColor'></view>
  5 + <!-- 头像信息 -->
  6 + <view class='top'>
  7 + <view class='top_left'>头像</view>
  8 + <view class='top_right'>
  9 + <view class='top_right_pic'>
  10 + <image src='../../img/aicon_49@2x.png'></image>
  11 + </view>
  12 + <view class='top_right_icon'>
  13 + <image src='../../img/right.png'></image>
  14 + </view>
  15 + </view>
  16 + </view>
  17 +
  18 + <view class='LineColor'></view>
  19 +
  20 + <!-- 昵称 -->
  21 + <view class='top mid'>
  22 + <view class='top_left'>昵称</view>
  23 + <view class='top_right wechat_name'>
  24 + 微信昵称
  25 + </view>
  26 + </view>
  27 + <!-- 真实姓名 -->
  28 + <view class='top mid'>
  29 + <view class='top_left'>真实姓名</view>
  30 + <!-- <view class='top_right real_name'>
  31 + 请输入真实姓名
  32 + </view> -->
  33 + <input placeholder='请输入真实姓名'></input>
  34 + </view>
  35 + <!-- 性别 -->
  36 + <view class='top mid'>
  37 + <view class='top_left'>性别</view>
  38 + <view class='top_right gender'>
  39 + <view class='male select_gender'>男</view>
  40 + <view class='female'>女</view>
  41 + </view>
  42 + </view>
  43 + <!-- 手机号 -->
  44 + <view class='top mid'>
  45 + <view class='top_left'>手机号</view>
  46 + <view class='top_right wechat_name'>
  47 + 13987654321
  48 + </view>
  49 + </view>
  50 + <!-- 出生日期 -->
  51 + <view class='top mid'>
  52 + <view class='top_left'>出生日期</view>
  53 + <view class='top_right '>
  54 + <view class='top_right_text'>请选择出生日期</view>
  55 + <view class='top_right_icon'>
  56 + <image src='../../img/right.png'></image>
  57 + </view>
  58 + </view>
  59 + </view>
  60 + <!-- 最高学历 -->
  61 + <view class='top mid'>
  62 + <view class='top_left'>最高学历</view>
  63 + <view class='top_right '>
  64 + <view class='top_right_text'>请选择最高学历</view>
  65 + <view class='top_right_icon'>
  66 + <image src='../../img/right.png'></image>
  67 + </view>
  68 + </view>
  69 + </view>
  70 + <!-- 工作年限 -->
  71 + <view class='top mid'>
  72 + <view class='top_left'>工作年限</view>
  73 + <view class='top_right '>
  74 + <view class='top_right_text'>请选择您的工作年限</view>
  75 + <view class='top_right_icon'>
  76 + <image src='../../img/right.png'></image>
  77 + </view>
  78 + </view>
  79 + </view>
  80 + <!-- 是否在职 -->
  81 + <view class='top mid'>
  82 + <view class='top_left'>是否在职</view>
  83 + <view class='top_right gender'>
  84 + <view class='male select_gender'>在职</view>
  85 + <view class='female'>离职</view>
  86 + </view>
  87 + </view>
  88 +
  89 + <!-- 自我介绍 -->
  90 + <view class='top mid content'>
  91 + <view class='top_left'>自我介绍</view>
  92 + <!-- 文本框 -->
  93 + <textarea placeholder='性别不限/学历不限/年龄不限/经验不限'></textarea>
  94 + <view class='textarea_number'>0/200</view>
  95 + </view>
  96 +
  97 +
  98 + <!-- 文字提示 -->
  99 + <view class='reminder'>完善个人信息,报名必填</view>
  100 +
  101 + <!-- 底部按钮 -->
  102 + <view class='bottom'>
  103 + <view class='bottom_btn'>确认发布</view>
  104 + </view>
  105 +</view>
  1 +
  2 +page{
  3 + line-height: 1;
  4 +}
  5 +.container{
  6 + display: flex;
  7 + flex-flow: column;
  8 +}
  9 +.top{
  10 + display: flex;
  11 + align-items: center;
  12 + justify-content: space-between;
  13 + padding: 24rpx 32rpx 24rpx 34rpx;
  14 +
  15 +}
  16 +.top_left{
  17 + font-size: 32rpx;
  18 + color: #666666;
  19 +}
  20 +.top_right{
  21 + display: flex;
  22 + align-items: center;
  23 +}
  24 +.top_right_pic{
  25 + width:74rpx;
  26 + height:74rpx;
  27 + display: flex;
  28 +}
  29 +.top_right_pic image{
  30 + width: 100%;
  31 + height: 100%;
  32 +}
  33 +.top_right_icon{
  34 + margin-left: 24rpx;
  35 + width:12rpx;
  36 + height:20rpx;
  37 + display: flex;
  38 +}
  39 +.top_right_icon image{
  40 + width: 100%;
  41 + height: 100%;
  42 +}
  43 +.LineColor{
  44 + width:750rpx;
  45 + height:14rpx;
  46 + background:rgba(242,242,242,1);
  47 +}
  48 +.wechat_name{
  49 + font-size: 32rpx;
  50 + color: #1A1A1A;
  51 +}
  52 +.real_name{
  53 + color: #999999;
  54 +}
  55 +
  56 +.mid{
  57 + padding: 34rpx 0;
  58 + margin: 0 32rpx;
  59 + border-bottom: 1px solid #EBEBEB;
  60 + font-size: 32rpx;
  61 +}
  62 +.mid input{
  63 + width: 230rpx;
  64 +}
  65 +.gender{
  66 + display: flex;
  67 + font-size: 26rpx;
  68 +}
  69 +.male{
  70 + width:70rpx;
  71 + height:44rpx;
  72 + line-height: 44rpx;
  73 + text-align: center;
  74 +
  75 + border: 1px solid #FFAA00;
  76 + color: #FFAA00;
  77 + border-radius:22rpx 0rpx 0rpx 22rpx;
  78 +}
  79 +.female{
  80 + width:70rpx;
  81 + height:44rpx;
  82 + line-height: 44rpx;
  83 + text-align: center;
  84 + /* background:rgba(255,170,0,1); */
  85 + border: 1px solid #FFAA00;
  86 + color: #FFAA00;
  87 + border-radius:0rpx 22rpx 22rpx 0rpx;
  88 +}
  89 +.select_gender{
  90 + background:rgba(255,170,0,1);
  91 + color: #fff;
  92 +}
  93 +.top_right_text{
  94 + color: #999999;
  95 +}
  96 +.content{
  97 + flex-flow: column;
  98 + align-items: normal;
  99 + position: relative;
  100 + border-bottom: 1px solid #EBEBEB;
  101 +}
  102 +.content textarea{
  103 + margin-top: 23rpx;
  104 + width:686rpx;
  105 + height:300rpx;
  106 + background:rgba(242,242,242,1);
  107 + border-radius:10rpx;
  108 + box-sizing: border-box;
  109 + padding: 24rpx;
  110 + font-size: 28rpx;
  111 + color:#1A1A1A;
  112 +}
  113 +.textarea_number{
  114 + position: absolute;
  115 + font-size:24rpx;
  116 + font-family:PingFang-SC-Medium;
  117 + font-weight:500;
  118 + color:rgba(153,153,153,1);
  119 + line-height:36rpx;
  120 + bottom: 50rpx;
  121 + right: 25rpx;
  122 +}
  123 +.reminder{
  124 + text-align: center;
  125 + margin-top: 23rpx;
  126 + font-size:26rpx;
  127 + font-family:PingFang-SC-Medium;
  128 + font-weight:500;
  129 + color:rgba(153,153,153,1);
  130 +
  131 +}
  132 +.bottom{
  133 + margin: 24rpx 0 32rpx 0;
  134 + display: flex;
  135 + align-items: center;
  136 + justify-content: center;
  137 +}
  138 +.bottom_btn{
  139 + width:686rpx;
  140 + height:90rpx;
  141 + line-height: 90rpx;
  142 + text-align: center;
  143 + background:rgba(255,129,44,1);
  144 + border-radius:5rpx;
  145 +
  146 +
  147 + font-size:28rpx;
  148 + font-family:PingFang-SC-Medium;
  149 + font-weight:500;
  150 + color:rgba(255,255,255,1);
  151 +
  152 +}
  1 +// pages/myResume2/myResume2.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "报名记录"
  4 +}
  1 +
  2 +<view class='container'>
  3 +
  4 + <view class='LineColor'></view>
  5 + <!-- 头像信息 -->
  6 + <view class='top'>
  7 + <view class='top_left'>头像</view>
  8 + <view class='top_right'>
  9 + <view class='top_right_pic'>
  10 + <image src='../../img/aicon_49@2x.png'></image>
  11 + </view>
  12 + <view class='top_right_icon'>
  13 + <image src='../../img/right.png'></image>
  14 + </view>
  15 + </view>
  16 + </view>
  17 +
  18 + <view class='LineColor'></view>
  19 +
  20 + <!-- 昵称 -->
  21 + <view class='top mid'>
  22 + <view class='top_left'>昵称</view>
  23 + <view class='top_right wechat_name'>
  24 + 微信昵称
  25 + </view>
  26 + </view>
  27 + <!-- 真实姓名 -->
  28 + <view class='top mid'>
  29 + <view class='top_left'>真实姓名</view>
  30 + <view class='top_right wechat_name'>
  31 + 高萌
  32 + </view>
  33 + </view>
  34 + <!-- 性别 -->
  35 + <view class='top mid'>
  36 + <view class='top_left'>性别</view>
  37 + <view class='top_right wechat_name'>
  38 +
  39 + </view>
  40 + </view>
  41 + <!-- 手机号 -->
  42 + <view class='top mid'>
  43 + <view class='top_left'>手机号</view>
  44 + <view class='top_right wechat_name'>
  45 + 13987654321
  46 + </view>
  47 + </view>
  48 + <!-- 出生日期 -->
  49 + <view class='top mid'>
  50 + <view class='top_left'>出生日期</view>
  51 + <view class='top_right wechat_name'>
  52 + 1997-12-07
  53 + </view>
  54 + </view>
  55 + <!-- 家乡 -->
  56 + <view class='top mid'>
  57 + <view class='top_left'>家乡</view>
  58 + <view class='top_right wechat_name'>
  59 + 天津
  60 + </view>
  61 + </view>
  62 + <!-- 最高学历 -->
  63 + <view class='top mid'>
  64 + <view class='top_left'>最高学历</view>
  65 + <view class='top_right wechat_name'>
  66 + 本科
  67 + </view>
  68 + </view>
  69 + <!-- 工作年限 -->
  70 + <view class='top mid'>
  71 + <view class='top_left'>工作年限</view>
  72 + <view class='top_right wechat_name'>
  73 + 10年以上
  74 + </view>
  75 + </view>
  76 + <!-- 是否在职 -->
  77 + <view class='top mid'>
  78 + <view class='top_left'>是否在职</view>
  79 + <view class='top_right wechat_name'>
  80 + 离职
  81 + </view>
  82 + </view>
  83 + <!--岗位描述 -->
  84 + <view class='top mid describe'>
  85 + <view class='mid_top'>
  86 + <view class='top_left'>岗位描述</view>
  87 + <view class='top_right wechat_name'></view>
  88 + </view>
  89 + <view class='mid_bottom'>
  90 + 本人风流倜傥英俊潇洒,为人幽默,善于解决客户问题
  91 + </view>
  92 + </view>
  93 +
  94 +</view>
  1 +
  2 +page{
  3 + line-height: 1;
  4 +}
  5 +.container{
  6 + display: flex;
  7 + flex-flow: column;
  8 +}
  9 +.top{
  10 + display: flex;
  11 + align-items: center;
  12 + justify-content: space-between;
  13 + padding: 24rpx 32rpx 24rpx 34rpx;
  14 +
  15 +}
  16 +.top_left{
  17 + font-size: 32rpx;
  18 + color: #666666;
  19 +}
  20 +.top_right{
  21 + display: flex;
  22 + align-items: center;
  23 +}
  24 +.top_right_pic{
  25 + width:74rpx;
  26 + height:74rpx;
  27 + display: flex;
  28 +}
  29 +.top_right_pic image{
  30 + width: 100%;
  31 + height: 100%;
  32 +}
  33 +.top_right_icon{
  34 + margin-left: 24rpx;
  35 + width:12rpx;
  36 + height:20rpx;
  37 + display: flex;
  38 +}
  39 +.top_right_icon image{
  40 + width: 100%;
  41 + height: 100%;
  42 +}
  43 +.LineColor{
  44 + width:750rpx;
  45 + height:14rpx;
  46 + background:rgba(242,242,242,1);
  47 +}
  48 +.wechat_name{
  49 + font-size: 32rpx;
  50 + color: #1A1A1A;
  51 +}
  52 +.real_name{
  53 + color: #999999;
  54 +}
  55 +
  56 +.mid{
  57 +
  58 + padding: 34rpx 0;
  59 + margin: 0 32rpx;
  60 + border-bottom: 1px solid #EBEBEB;
  61 + font-size: 32rpx;
  62 +}
  63 +.mid input{
  64 + width: 230rpx;
  65 +}
  66 +.gender{
  67 + display: flex;
  68 + font-size: 26rpx;
  69 +}
  70 +.male{
  71 + width:70rpx;
  72 + height:44rpx;
  73 + line-height: 44rpx;
  74 + text-align: center;
  75 +
  76 + border: 1px solid #FFAA00;
  77 + color: #FFAA00;
  78 + border-radius:22rpx 0rpx 0rpx 22rpx;
  79 +}
  80 +.female{
  81 + width:70rpx;
  82 + height:44rpx;
  83 + line-height: 44rpx;
  84 + text-align: center;
  85 + /* background:rgba(255,170,0,1); */
  86 + border: 1px solid #FFAA00;
  87 + color: #FFAA00;
  88 + border-radius:0rpx 22rpx 22rpx 0rpx;
  89 +}
  90 +.select_gender{
  91 + background:rgba(255,170,0,1);
  92 + color: #fff;
  93 +}
  94 +.top_right_text{
  95 + color: #999999;
  96 +}
  97 +.content{
  98 + flex-flow: column;
  99 + align-items: normal;
  100 + position: relative;
  101 + border-bottom: 1px solid #EBEBEB;
  102 +}
  103 +.content textarea{
  104 + margin-top: 23rpx;
  105 + width:686rpx;
  106 + height:300rpx;
  107 + background:rgba(242,242,242,1);
  108 + border-radius:10rpx;
  109 + box-sizing: border-box;
  110 + padding: 24rpx;
  111 + font-size: 28rpx;
  112 + color:#1A1A1A;
  113 +}
  114 +.textarea_number{
  115 + position: absolute;
  116 + font-size:24rpx;
  117 + font-family:PingFang-SC-Medium;
  118 + font-weight:500;
  119 + color:rgba(153,153,153,1);
  120 + line-height:36rpx;
  121 + bottom: 50rpx;
  122 + right: 25rpx;
  123 +}
  124 +.reminder{
  125 + text-align: center;
  126 + margin-top: 23rpx;
  127 + font-size:26rpx;
  128 + font-family:PingFang-SC-Medium;
  129 + font-weight:500;
  130 + color:rgba(153,153,153,1);
  131 +
  132 +}
  133 +.bottom{
  134 + margin: 24rpx 0 32rpx 0;
  135 + display: flex;
  136 + align-items: center;
  137 + justify-content: center;
  138 +}
  139 +.bottom_btn{
  140 + width:686rpx;
  141 + height:90rpx;
  142 + line-height: 90rpx;
  143 + text-align: center;
  144 + background:rgba(255,129,44,1);
  145 + border-radius:5rpx;
  146 +
  147 +
  148 + font-size:28rpx;
  149 + font-family:PingFang-SC-Medium;
  150 + font-weight:500;
  151 + color:rgba(255,255,255,1);
  152 +
  153 +}
  154 +.mid_top{
  155 + width: 100%;
  156 + display: flex;
  157 + justify-content: space-between;
  158 +}
  159 +.describe{
  160 + /* width: 100%; */
  161 + display: flex;
  162 + flex-flow: column;
  163 +}
  164 +.mid_bottom{
  165 + margin-top: 22rpx;
  166 + font-size:28rpx;
  167 + font-family:PingFang-SC-Medium;
  168 + font-weight:500;
  169 + color:rgba(26,26,26,1);
  170 +}
  1 +// pages/publish/publish.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {}
  3 +}
  1 +<!--pages/publish/publish.wxml-->
  2 +<text>pages/publish/publish.wxml</text>
  1 +/* pages/publish/publish.wxss */
  1 +// pages/recommend/recommend.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "推荐有奖"
  4 +}
  1 +
  2 +<view class='container'>
  3 + <view class='top'>
  4 + <image src='../../img/aicon_51@2x.png'></image>
  5 + </view>
  6 +
  7 + <view class='mid'>
  8 + <!-- 大盒子1 -->
  9 + <view class='item_1'>
  10 + <view class='item_1_top'>
  11 + 邀请任意好友登录优秀精英并绑定手机号
  12 + 且2个岗位招聘,你和好友均可各享奖励
  13 + </view>
  14 + <!-- 小盒子 -->
  15 + <view class='item_1_mid'>
  16 + <view class='item_1_mid_t'>
  17 + <span class='color_yellow'>自己</span>可得
  18 + </view>
  19 + <view class='item_1_mid_b'>
  20 + <view>邀请任意好友自己可得1元现金奖励</view>
  21 + <view class='mid_b_text'>邀请好友越多获得奖励越多</view>
  22 + </view>
  23 + </view>
  24 + <!-- 小盒子 -->
  25 + <view class='item_1_mid'>
  26 + <view class='item_1_mid_t'>
  27 + <span class='color_yellow'>好友</span>可得
  28 + </view>
  29 + <view class='item_1_mid_b'>
  30 + <view>邀请任意好友自己可得1元现金奖励</view>
  31 + <view class='mid_b_text'>邀请好友越多获得奖励越多</view>
  32 + </view>
  33 + </view>
  34 + </view>
  35 +
  36 + <!-- 大盒子2 -->
  37 + <view class='item_2'>
  38 + <view class='item_2_left'>
  39 + <view class='item_2_left_top'>252</view>
  40 + <view class='item_2_left_bottom'>已获得奖励(元)</view>
  41 + </view>
  42 + <view class='item_2_mid'></view>
  43 + <view class='item_2_left'>
  44 + <view class='item_2_left_top'>15</view>
  45 + <view class='item_2_left_bottom'>已成功邀请(人)</view>
  46 + </view>
  47 + </view>
  48 +
  49 + <!-- 大盒子3 -->
  50 + <view class='item_3'>
  51 + <view class='item_3_top'>
  52 + <view class='item_3_top_line'></view>
  53 + <view class='item_3_top_mid'>参与流程</view>
  54 + <view class='item_3_top_line'></view>
  55 + </view>
  56 + <view class='item_3_box'>
  57 + <view class='box_item'>
  58 + <view class='box_item_left'>1</view>
  59 + <view class='box_item_right'>分享活动给好友</view>
  60 + </view>
  61 + <view class='box_item'>
  62 + <view class='box_item_left'>2</view>
  63 + <view class='box_item_right'>好友登录平台</view>
  64 + </view>
  65 + <view class='box_item'>
  66 + <view class='box_item_left'>3</view>
  67 + <view class='box_item_right'>好友绑定手机并成功报名两个招聘岗位</view>
  68 + </view>
  69 +
  70 + </view>
  71 + </view>
  72 +
  73 + <!-- 大盒子4 -->
  74 + <view class='item_4'>
  75 + <view class='item_3_top'>
  76 + <view class='item_3_top_line'></view>
  77 + <view class='item_3_top_mid'>活动规则</view>
  78 + <view class='item_3_top_line'></view>
  79 + </view>
  80 + <!-- 活动内容 -->
  81 + <view class='item_4_content'>
  82 +
  83 + <view>1、本活动全国用户均可参加</view>
  84 + <view>2、本活动时间:2019年03月01日至2020年03月01日</view>
  85 + <view>3、参与方式:分享小程序给好友,好友进入小程序进行授权,允许小程序获取用户手机号并进行绑定,且完善简历后成功报名2个岗位招聘即可获得奖励,推荐人可获得1元,好友首次完成任务可获得5元,好友邀请他人,自己可获得1元,以此类推</view>
  86 + <view>4、奖励发放:用户在成功邀请好友后,平台自动发放给用户及好友的小程序账户中</view>
  87 + <view>5、现金可以提现,每天最多提现一次,且提现金额需满足10元且为10的倍数;</view>
  88 + <view>6、注意事项:</view>
  89 + <view>(1)获得现金奖励需满足推荐好友登录小程序并允许小程序绑定手机号且成功报名2个岗位招聘</view>
  90 + <view>(2)若系统检测为刷单行为,将取消参与活动资格及奖金发放(如:批量使用虚拟手机号码进行注册)</view>
  91 + <view>注:优秀精英保留活动最终结束权,对本活动有疑问请联系官方客服:400-800-8820</view>
  92 +
  93 +
  94 + </view>
  95 + </view>
  96 +
  97 + <!-- 底部按钮 -->
  98 + <view class='bottom'>
  99 + 马上邀请好友,领奖励
  100 + </view>
  101 +
  102 +
  103 +
  104 + </view>
  105 +</view>
  1 +
  2 +page{
  3 + line-height: 1;
  4 +}
  5 +.container{
  6 + width: 750rpx;
  7 + display: flex;
  8 + flex-flow: column;
  9 + position: relative;
  10 +}
  11 +.top{
  12 + width: 750rpx;
  13 + height: 1100rpx;
  14 + display: flex;
  15 +}
  16 +.top image{
  17 + width: 100%;
  18 + height: 100%;
  19 +}
  20 +.mid{
  21 + width: 750rpx;
  22 + position: absolute;
  23 + top: 263rpx;
  24 + display: flex;
  25 + align-items: center;
  26 + justify-content: center;
  27 + flex-flow: column;
  28 +}
  29 +.item_1{
  30 + width:688rpx;
  31 + height:685rpx;
  32 + background:rgba(253,255,255,1);
  33 + box-shadow:0rpx 8rpx 49rpx 0rpx rgba(255,107,82,0.34);
  34 + border-radius:22rpx;
  35 + box-sizing: border-box;
  36 + padding: 46rpx 50rpx;
  37 +}
  38 +.item_1_top{
  39 + font-size:32rpx;
  40 + font-family:PingFang-SC-Bold;
  41 + font-weight:bold;
  42 + color:rgba(254,76,48,1);
  43 + line-height: 52rpx;
  44 +}
  45 +.item_1_mid{
  46 + margin-top: 40rpx;
  47 + display: flex;
  48 + flex-flow: column;
  49 +}
  50 +.item_1_mid_t{
  51 + width:584rpx;
  52 + height:72rpx;
  53 + line-height: 72rpx;
  54 + text-align: center;
  55 + background:linear-gradient(180deg,rgba(255,118,88,1),rgba(255,138,101,1));
  56 + border-radius:22rpx 22rpx 0rpx 0rpx;
  57 + font-size: 40rpx;
  58 + color: #fff;
  59 + font-family:PangMenZhengDao;
  60 +}
  61 +.color_yellow{
  62 + color: #FFF285;
  63 +}
  64 +.item_1_mid_b{
  65 + width:584rpx;
  66 + height:131rpx;
  67 + background:rgba(247,247,247,1);
  68 + border-radius:0rpx 0rpx 22rpx 22rpx;
  69 + display: flex;
  70 + flex-flow: column;
  71 + align-items: center;
  72 + justify-content: center;
  73 +
  74 + font-size:30rpx;
  75 + font-family:PingFang-SC-Bold;
  76 + font-weight:bold;
  77 + color:rgba(75,75,77,1);
  78 +}
  79 +.mid_b_text{
  80 + margin-top: 23rpx;
  81 + font-size:26rpx;
  82 + font-family:PingFang-SC-Medium;
  83 + font-weight:500;
  84 + color:rgba(153,153,153,1);
  85 +}
  86 +.item_2{
  87 + margin-top: 24rpx;
  88 + width:688rpx;
  89 + height:213rpx;
  90 + background:rgba(253,255,255,1);
  91 + box-shadow:0rpx 8rpx 49rpx 0rpx rgba(255,107,82,0.34);
  92 + border-radius:22rpx;
  93 + display: flex;
  94 + align-items: center;
  95 + justify-content: space-between;
  96 + box-sizing: border-box;
  97 + padding: 0 66rpx;
  98 +}
  99 +.item_2_left{
  100 + display: flex;
  101 + flex-flow: column;
  102 + align-items: center;
  103 +}
  104 +.item_2_left_top{
  105 +
  106 + font-size:80rpx;
  107 + font-family:Roboto-Medium;
  108 + font-weight:500;
  109 + color:rgba(251,92,69,1);
  110 +
  111 +}
  112 +.item_2_left_bottom{
  113 + font-size:28rpx;
  114 + font-family:PingFang-SC-Medium;
  115 + font-weight:500;
  116 + color:rgba(251,92,69,1);
  117 + margin-top: 20rpx;
  118 +}
  119 +.item_2_mid{
  120 + width:2rpx;
  121 + height:89rpx;
  122 + background:rgba(255,137,101,0.54);
  123 +}
  124 +.item_3{
  125 + margin-top: 24rpx;
  126 + width:688rpx;
  127 + height:363rpx;
  128 + background:rgba(253,255,255,1);
  129 + box-shadow:0rpx 8rpx 49rpx 0rpx rgba(255,107,82,0.34);
  130 + border-radius:22rpx;
  131 +}
  132 +.item_3_top{
  133 + margin-top: 40rpx;
  134 + display: flex;
  135 + align-items: center;
  136 + justify-content: center;
  137 +}
  138 +.item_3_top_line{
  139 + width:77rpx;
  140 + height:2rpx;
  141 + background:rgba(255,131,96,0.4);
  142 +}
  143 +.item_3_top_mid{
  144 + font-size:40rpx;
  145 + font-family:PangMenZhengDao;
  146 + font-weight:400;
  147 + color:rgba(255,131,96,1);
  148 + margin: 0 37rpx;
  149 +}
  150 +.item_3_box{
  151 + margin-top: 26rpx;
  152 + display: flex;
  153 + flex-flow: column;
  154 +}
  155 +.box_item{
  156 + margin-top: 24rpx;
  157 + display: flex;
  158 + align-items: center;
  159 + box-sizing: border-box;
  160 + padding: 0 50rpx;
  161 +}
  162 +.box_item_left{
  163 + width:38rpx;
  164 + height:38rpx;
  165 + line-height: 38rpx;
  166 + text-align: center;
  167 + background:rgba(255,131,96,1);
  168 + border-radius:50%;
  169 +
  170 + font-size:28rpx;
  171 + font-family:Roboto-Regular;
  172 + font-weight:400;
  173 + color:rgba(255,254,254,1);
  174 +}
  175 +.box_item_right{
  176 + margin-left: 24rpx;
  177 + font-size:30rpx;
  178 + font-family:PingFang-SC-Medium;
  179 + font-weight:500;
  180 + color:rgba(75,75,76,1);
  181 +}
  182 +
  183 +.item_4{
  184 + margin-top: 24rpx;
  185 + width:688rpx;
  186 + height:1129rpx;
  187 + background:rgba(253,255,255,1);
  188 + box-shadow:0rpx 8rpx 49rpx 0rpx rgba(255,107,82,0.34);
  189 + border-radius:22rpx;
  190 + display: flex;
  191 + flex-flow: column;
  192 +}
  193 +.item_4_content{
  194 +
  195 + font-size:26rpx;
  196 + font-family:PingFang-SC-Medium;
  197 + font-weight:500;
  198 + color:rgba(77,77,77,1);
  199 + line-height: 48rpx;
  200 + box-sizing: border-box;
  201 + padding: 30rpx 60rpx 42rpx 50rpx;
  202 +}
  203 +.bottom{
  204 + margin-top: 72rpx;
  205 + margin-bottom: 32rpx;
  206 + width:686rpx;
  207 + height:80rpx;
  208 + line-height: 80rpx;
  209 + text-align: center;
  210 + background:rgba(255,129,44,1);
  211 + border-radius:5rpx;
  212 +
  213 + font-size:28rpx;
  214 + font-family:PingFang-SC-Medium;
  215 + font-weight:500;
  216 + color:rgba(255,255,255,1);
  217 +
  218 +}
  1 +// pages/record/record.js
  2 +Page({
  3 +
  4 + /**
  5 + * 页面的初始数据
  6 + */
  7 + data: {
  8 +
  9 + },
  10 +
  11 + /**
  12 + * 生命周期函数--监听页面加载
  13 + */
  14 + onLoad: function (options) {
  15 +
  16 + },
  17 +
  18 + /**
  19 + * 生命周期函数--监听页面初次渲染完成
  20 + */
  21 + onReady: function () {
  22 +
  23 + },
  24 +
  25 + /**
  26 + * 生命周期函数--监听页面显示
  27 + */
  28 + onShow: function () {
  29 +
  30 + },
  31 +
  32 + /**
  33 + * 生命周期函数--监听页面隐藏
  34 + */
  35 + onHide: function () {
  36 +
  37 + },
  38 +
  39 + /**
  40 + * 生命周期函数--监听页面卸载
  41 + */
  42 + onUnload: function () {
  43 +
  44 + },
  45 +
  46 + /**
  47 + * 页面相关事件处理函数--监听用户下拉动作
  48 + */
  49 + onPullDownRefresh: function () {
  50 +
  51 + },
  52 +
  53 + /**
  54 + * 页面上拉触底事件的处理函数
  55 + */
  56 + onReachBottom: function () {
  57 +
  58 + },
  59 +
  60 + /**
  61 + * 用户点击右上角分享
  62 + */
  63 + onShareAppMessage: function () {
  64 +
  65 + }
  66 +})
  1 +{
  2 + "usingComponents": {},
  3 + "navigationBarTitleText": "报名记录"
  4 +}
  1 +
  2 +<view class='container'>
  3 +
  4 + <!-- 顶部线条 -->
  5 + <view class='underline'></view>
  6 + <!-- 条目 -->
  7 + <view class='items'>
  8 + <view class='item'>
  9 + <!-- 头部 -->
  10 + <view class='item_top'>
  11 + <view class='item_top_left'>
  12 + <view class='item_top_left_pic'>
  13 + <image src='/img/aicon_08@2x.png'></image>
  14 + </view>
  15 + <view class='item_top_left_text'>
  16 + <view class='text_top'>酒店服务员</view>
  17 + <view class='text_bottom'>4000-5000元/月</view>
  18 + </view>
  19 + </view>
  20 +
  21 + <view class='item_top_right'>
  22 + 已报名
  23 + </view>
  24 + </view>
  25 + <!-- 底部 -->
  26 + <view class='item_bottom'>
  27 + <view class='item_bottom_left'>
  28 + <view class='item_bottom_left_pic'>
  29 + <image src='/img/aicon_10@2x.png'></image>
  30 + </view>
  31 + <!-- 名字 -->
  32 + <view>王思迪</view>
  33 + </view>
  34 +
  35 + <view class='item_bottom_right'>
  36 + <view class='item_bottom_left_pic'>
  37 + <image src='/img/aicon_09@2x.png'></image>
  38 + </view>
  39 + <view>南开区 3.2km</view>
  40 + </view>
  41 + </view>
  42 + </view>
  43 + <view class='item'>
  44 + <!-- 头部 -->
  45 + <view class='item_top'>
  46 + <view class='item_top_left'>
  47 + <view class='item_top_left_pic'>
  48 + <image src='/img/aicon_08@2x.png'></image>
  49 + </view>
  50 + <view class='item_top_left_text'>
  51 + <view class='text_top'>酒店服务员</view>
  52 + <view class='text_bottom'>4000-5000元/月</view>
  53 + </view>
  54 + </view>
  55 +
  56 + <view class='item_top_right'>
  57 + 已报名
  58 + </view>
  59 + </view>
  60 + <!-- 底部 -->
  61 + <view class='item_bottom'>
  62 + <view class='item_bottom_left'>
  63 + <view class='item_bottom_left_pic'>
  64 + <image src='/img/aicon_10@2x.png'></image>
  65 + </view>
  66 + <!-- 名字 -->
  67 + <view>王思迪</view>
  68 + </view>
  69 +
  70 + <view class='item_bottom_right'>
  71 + <view class='item_bottom_left_pic'>
  72 + <image src='/img/aicon_09@2x.png'></image>
  73 + </view>
  74 + <view>南开区 3.2km</view>
  75 + </view>
  76 + </view>
  77 + </view>
  78 +
  79 +
  80 + </view>
  81 +
  82 + <!-- 底部提示 -->
  83 + <view class='bottom'>
  84 + 没有更多内容了
  85 + </view>
  86 +
  87 +</view>