Fork me on GitHub

微信小程序-仿智联页面-简历管理

最终效果

先来说明一下我们需要实现的最终效果:多个简历之间可以左右滑动切换,点击右下角图标按钮显示更多操作,点击对应的图标按钮跳转到对应的页面(对应的页面需要另外写,此处并未展示)。

下面我们直接看代码:

1.wxml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!------------------------------------- 无简历 ------------------------------------->
<view wx:if="{{resumes.length == 0}}" class='brCenter' bindtap='toAdd'>
<image src='../../img/resumeManagement/add.png' class='toAddIco'></image>
<view>添加简历</view>
</view>
<!------------------------------------- 有简历 ------------------------------------->
<view wx:if="{{resumes.length > 0}}">
<!-- 头部选择tab 点 -->
<scroll-view scroll-x="false" class="tab-h" scroll-left="{{scrollLeft}}">
<view class="tab-item {{currentTab == index ? 'tab-active' : ''}}" data-current="{{index}}" bindtap="swichNav" wx:for="{{resumes}}" wx:key="id"></view>
</scroll-view>

<swiper current="{{currentTab}}" duration="300" bindchange="swiperTab" style='height:{{swiperHeight}}rpx;'>

<!-- 当几个页面样式一样时,可以用wx:for循环遍历重复出来 -->
<swiper-item wx:for="{{resumes.length}}" wx:key="id">
<scroll-view scroll-x="false" scroll-y="true" class="scoll-h" enable-back-to-top="true">
<!-- 点击的图片 模拟showModal弹窗 更多选项 -->
<image src='../../img/resumeManagement/more.png' class='moreSet icoB' bindtap='toGetMore' data-index='{{index}}'></image>

<!-- ************************ 主体内容 S ************************ -->
<!-- 信息块 1 个人基本信息 -->
<view class='listsBlock'>
<!-- 姓名 -->
<view class='spaceBetweenCenter'>
<view class='increaseBoldBlack'>{{choosedResume.applicant}}</view>
<image src='../../img/resumeManagement/editor.png' class='more' bindtap='jumpEditorInfo'></image>
</view>

<view class='messages gray'>
<view class='info'>
<text decode='true'>{{choosedResume.sex}}&nbsp;/&nbsp;{{choosedResume.age}}岁&nbsp;/&nbsp;{{choosedResume.city}}&nbsp;/&nbsp;{{choosedResume.workExperience}}工作经验</text>
</view>
<!-- 手机号 -->
<view class='justifyCenter'>
<image src='../../img/resumeManagement/mobilePhone.png' class='more'></image>
<text decode='true'>&nbsp;&nbsp;{{choosedResume.mobilePhone}}</text>
</view>
<!-- 邮箱 -->
<view class='justifyCenter'>
<image src='../../img/resumeManagement/email.png' class='more'></image>
<text decode='true'>&nbsp;&nbsp;{{choosedResume.email}}</text>
</view>
</view>
</view>

<!-- 信息块 2 求职意向 -->
<view class='listsBlock'>
<view class='spaceBetweenCenter'>
<view class='increase'>
<image src='../../img/resumeManagement/ico1.png' class='more'></image>
<text decode='true'>&nbsp;求职意向</text>
</view>
<image src='../../img/resumeManagement/editor.png' class='more' bindtap='jumpEditorIntention'></image>
</view>

<view class='messages gray'>
<view class='infoText'>
<view class='justifyCenter'>工作性质:{{choosedResume.workNature}}</view>
<view class='justifyCenter'>工作地点:{{choosedResume.workPlace}}</view>
<view class='justifyCenter'>期望薪资:{{choosedResume.expectedSalary}}</view>
<view class='justifyCenter'>职位类别:{{choosedResume.jobCategory}}</view>
<view class='justifyCenter'>行业类别:{{choosedResume.industryCategory}}</view>
</view>
</view>
</view>

<!-- 信息块 3 工作经历 -->
<view class='listsBlock'>
<view class='spaceBetweenCenter'>
<view class='increase'>
<image src='../../img/resumeManagement/ico1.png' class='more'></image>
<text decode='true'>&nbsp;工作经历</text>
</view>
</view>

<block wx:for="{{choosedResume.workUndergo}}" wx:key="">
<view class='messages gray'>
<view class='infoText'>
<view class='spaceBetweenCenter'>
<view class='justifyCenter'>{{item.jobTitle}}</view>
<image src='../../img/resumeManagement/editor.png' class='more' bindtap='jumpEditorWork' data-index='{{index}}'></image>
</view>
<view class='justifyCenter'>
<text decode='true'>{{item.companyName}}&nbsp;</text>
<text decode='true'>&nbsp;{{item.monthlySalary}}</text>
</view>
<view class='justifyCenter'>
<text decode='true'>{{item.workingTimeS}}&nbsp;</text>
<text>一</text>
<text decode='true'>&nbsp;{{item.workingTimeE}}</text>
</view>
<view class='justifyCenter shallowGray'>工作描述:</view>
<view class='justifyCenter'>{{item.jobDescription}}</view>
</view>
</view>
<!-- 分割线 -->
<view wx:if="{{choosedResume.workUndergo.length > 1}}" class='lineCross'></view>
</block>

<!-- 添加 -->
<view class='add justifyCenter listCrossCenter' bindtap='jumpAddWork'>
<image src='../../img/resumeManagement/add2.png' class='more'></image>
<text decode='true'>&nbsp;添加工作经历</text>
</view>
</view>

<!-- 信息块 4 教育背景 -->
<view class='listsBlock'>
<view class='spaceBetweenCenter'>
<view class='increase'>
<image src='../../img/resumeManagement/ico1.png' class='more'></image>
<text decode='true'>&nbsp;教育背景</text>
</view>
</view>

<block wx:for="{{choosedResume.educationBackground}}" wx:key="">
<view class='messages gray'>
<view class='infoText'>
<view class='spaceBetweenCenter'>
<view class='justifyCenter'>{{item.schoolName}}</view>
<image src='../../img/resumeManagement/editor.png' class='more' bindtap='jumpEditorEducation' data-index='{{index}}'></image>
</view>
<view class='justifyCenter'>
<text decode='true'>{{item.professional}}&nbsp;</text>
<text>/</text>
<text decode='true'>&nbsp;{{item.recordFormalSchooling}}</text>
</view>
<view class='justifyCenter'>
<text decode='true'>{{item.schoolTimeS}}&nbsp;</text>
<text>一</text>
<text decode='true'>&nbsp;{{item.schoolTimeE}}</text>
</view>
</view>
</view>
<!-- 分割线 -->
<view class='lineCross'></view>
</block>

<!-- 添加 -->
<view class='add justifyCenter listCrossCenter' bindtap='jumpAddEducation'>
<image src='../../img/resumeManagement/add2.png' class='more'></image>
<text decode='true'>&nbsp;添加教育背景</text>
</view>
</view>

</scroll-view>
</swiper-item>

</swiper>
<!-- ************************ 主体内容 E ************************ -->
</view>



<!-- 模拟wx.showModal弹出框 更多选项 -->
<view wx:if="{{getMore}}" class='authorization' catchtouchmove="ture" bindtap='notToGetMore'>
<view class="center zheZhaoCeng" style='height:{{winHeight}}rpx;'>

<!----------------------------- 简历设置 内容 S ----------------------------->
<view class='listParallelCenter moreSet'>

<view class='justifyCenter'>
<text decode='true'>置顶简历&nbsp;&nbsp;</text>
<image src='../../img/resumeManagement/toTop.png' class='icoB' bindtap='toTop'></image>
</view>

<view class='justifyCenter'>
<text decode='true'>刷新简历&nbsp;&nbsp;</text>
<image src='../../img/resumeManagement/refresh.png' class='icoB' bindtap='onPullDownRefresh'></image>
</view>

<view class='justifyCenter'>
<text decode='true'>删除简历&nbsp;&nbsp;</text>
<image src='../../img/resumeManagement/delete.png' class='icoB' bindtap='toDelete'></image>
</view>

<view class='justifyCenter'>
<text decode='true'>添加简历&nbsp;&nbsp;</text>
<image src='../../img/resumeManagement/add.png' class='icoB' bindtap='toAdd'></image>
</view>

<view class='justifyCenter'>
<text decode='true' class='transparent'>设置默认&nbsp;&nbsp;</text>
<image src='../../img/resumeManagement/more.png' class='icoB' bindtap='notShowModal'></image>
</view>

</view>
<!----------------------------- 简历设置 内容 E ----------------------------->
</view>
</view>

2.wxss

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
page {
background-color: #f9f9f9;
}


/* =======================================
头部选择tab 点
======================================= */

/* 头部导航栏 */

.tab-h {
width: 100%;
height: 80rpx;
text-align: center;
box-sizing: border-box;
overflow: hidden; /* 超出部分隐藏 */
white-space: nowrap; /* 设置滚动视图容器不换行 *//* 固定在头部 */
}

/* 每个tab标题样式 */

.tab-item {
height: 6rpx;
width: 23rpx;
margin-left: 5rpx;
border-radius: 50rpx;
background-color: rgb(219, 219, 219);
display: inline-block;
position: relative;
top: 15rpx;
}

/* 选中其中一个tab标题时,修改样式 */

.tab-item.tab-active {
width: 46rpx;
background-color: #fa5645;
}

/* 主体内容 预留头部导航栏的高度 */

.tab-content {
padding-top: 80rpx;
}

/* 主体内容 scroll-view高度 */

.scoll-h {
height: 100%;
position: relative;
}

/* =======================================
列表
======================================= */

.listsBlock {
margin: 0 20rpx 20rpx 20rpx;
padding: 50rpx 30rpx;
background-color: #fff;
border-radius: 20rpx;
}

.messages .info {
margin: 30rpx 0;
}

.messages .justifyCenter {
margin-top: 10rpx;
}

.messages .infoText {
margin-top: 30rpx;
}

/* 分割线 */

.listsBlock .lineCross {
margin: 50rpx 0;
width: 100%;
}

/* =======================================
模拟wx.showModal弹出框
======================================= */

/* 遮罩层 */

.authorization {
position: relative;
}

/* 白色遮罩层 */
.authorization .zheZhaoCeng {
width: 100%;
background-color: rgba(255, 255, 255, 0.8);
position: fixed;
z-index: 50;
}

/* 黑色遮罩层 */
.authorization .zheZhaoCengB {
background-color: rgba(0, 0, 0, 0.6);
}

.zheZhaoCeng .moreSet {
position: fixed;
right: 50rpx;
bottom: 0;
}

.zheZhaoCeng .justifyCenter {
margin-bottom: 20rpx;
}

3. js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
// 公共JS
let utils = require('../../../utils/util.js');
const app = getApp();
Page({
data: {
// ********* 模拟showModal弹窗 更多选项 *********
winHeight: "", // 遮罩层背景高度
getMore: false, // 是否显示 遮罩层
distinguish: "简历设置", // 区分需要显示的内容

swiperHeight: "", // 遮罩层背景高度
resumes: [], // 简历列表
choosedResume: {}, // 选中的简历
currentTab: "0", // 对应选中的Tab
},

//滑动切换
swiperTab: function(e) {
let that = this;
if (this.data.currentTab === e.detail.current) {
return false;
} else {
that.setData({
currentTab: e.detail.current
});
}
let currentTab = e.detail.current;
console.log("当前选中的tab", currentTab);
that.getChoosedResume(currentTab); // 获取 简历信息
},

//点击切换
swichNav: function(e) {
let that = this;
if (this.data.currentTab === e.target.dataset.current) {
console.log("11111");
return false;
} else {
that.setData({
currentTab: e.target.dataset.current
});
}
let currentTab = e.target.dataset.current;
console.log("当前选中的tab", currentTab);
that.getChoosedResume(currentTab); // 获取 简历信息
},

/**************** 模拟wx.showModal弹出框 更多选项 ****************/
toGetMore: function() {
this.setData({
getMore: true, // 是否弹出 弹出框
})
},

/**************** 取消模拟wx.showModal弹出框 更多选项 ****************/
notToGetMore: function() {
this.setData({
getMore: false, // 是否弹出 弹出框
})
},

/**************** 跳转到 编辑个人基本信息 页面 ****************/
jumpEditorInfo: function() {
let choosedInfo = this.data.choosedResume;
console.log("编辑个人基本信息", choosedInfo);
let str = JSON.stringify(choosedInfo);
wx.navigateTo({
url: '../editorInfo/editorInfo?jsonStr=' + str,
})
},

/**************** 跳转到 编辑求职意向 页面 ****************/
jumpEditorIntention: function () {
let choosedInfo = this.data.choosedResume;
console.log("编辑求职意向", choosedInfo);
let str = JSON.stringify(choosedInfo);
wx.navigateTo({
url: '../editorIntention/editorIntention?jsonStr=' + str,
})
},

/**************** 跳转到 编辑工作经历 页面 ****************/
jumpEditorWork: function (e) {
let choosedInfo = this.data.choosedResume;
let index = e.currentTarget.dataset.index;
let choosedWork = choosedInfo.workUndergo[index];
console.log("编辑工作经历", choosedWork, );
let str = JSON.stringify(choosedWork);
wx.navigateTo({
url: '../addWork/addWork?jsonStr=' + str,
})
},

/**************** 跳转到 编辑教育背景 页面 ****************/
jumpEditorEducation: function (e) {
let choosedInfo = this.data.choosedResume;
let index = e.currentTarget.dataset.index;
let choosedEducation = choosedInfo.educationBackground[index];
console.log("编辑教育背景", choosedEducation);
let str = JSON.stringify(choosedEducation);
wx.navigateTo({
url: '../addEducation/addEducation?jsonStr=' + str,
})
},

/**************** 点击去添加工作经历 ****************/
jumpAddWork: function () {
console.log("点击去添加工作经历");
let str = JSON.stringify({});
wx.navigateTo({
url: '../addWork/addWork?jsonStr=' + str,
})
},

/**************** 点击去添加教育背景 ****************/
jumpAddEducation: function () {
console.log("点击去添加教育背景");
let str = JSON.stringify({});
wx.navigateTo({
url: '../addEducation/addEducation?jsonStr=' + str,
})
},

/**************** 置顶简历 ****************/
toTop: function() {
let choosedResume = this.data.resumes[this.data.currentTab];
console.log("置顶 当前选中的简历", choosedResume);
this.notToGetMore(); // 取消wx.showModal弹出框
},

/**************** 删除简历 ****************/
toDelete: function() {
let choosedResume = this.data.resumes[this.data.currentTab];
console.log("删除 当前选中的简历", choosedResume);
this.notToGetMore(); // 取消wx.showModal弹出框
},

/**************** 添加简历 ****************/
toAdd: function() {
this.notToGetMore(); // 取消wx.showModal弹出框
console.log("添加简历");
wx.navigateTo({
url: '../resumeAdd/resumeAdd',
})
},

/**
* 生命周期函数--监听页面加载
*/
onLoad: function(options) {
this.setData({
currentTab: 0, // 个人中心跳转到对应的Tab
});
this.getWindowHeight(); // 高度自适应(rpx)
this.getResumes(0); // 获取 简历列表
},

/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function() {

},

/**
* 生命周期函数--监听页面显示
*/
onShow: function() {
let currentTab = this.data.currentTab;
console.log("当前选中的tab", currentTab);
this.getChoosedResume(currentTab); // 获取 简历信息
},

/**
* 生命周期函数--监听页面隐藏
*/
onHide: function() {

},

/**
* 生命周期函数--监听页面卸载
*/
onUnload: function() {

},

/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function() {
console.log('下拉刷新');
wx.showNavigationBarLoading() //在标题栏中显示加载
let currentTab = this.data.currentTab;
console.log("当前选中的tab", currentTab);
this.getChoosedResume(currentTab); // 获取 简历信息
setTimeout(function() {
// complete
wx.hideNavigationBarLoading() //完成停止加载
wx.stopPullDownRefresh() //停止下拉刷新
}, 1500);
},

/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function() {

},

/**
* 用户点击右上角分享
*/
onShareAppMessage: function() {

},

/**************** 高度自适应(rpx) ****************/
getWindowHeight: function() {
let that = this;
wx.getSystemInfo({
success: function(res) {
let clientHeight = res.windowHeight,
clientWidth = res.windowWidth,
rpxR = 750 / clientWidth; //比例
// console.log(clientHeight);
// console.log(clientWidth);
let allCalc = clientHeight * rpxR; // 手机全屏高度
let bottomCalc = clientHeight * rpxR - 180; // 商品详细页底部固定栏(支付按钮)手机全屏高度-底部固定
let calcIPX = clientHeight * rpxR - 248; // 商品详细页底部固定栏(支付按钮)适配iphonex 手机全屏高度-底部固定-68
console.log("获取手机高", allCalc, bottomCalc, calcIPX);
that.setData({
winHeight: allCalc,
swiperHeight: allCalc - 80
})
},

/**************** 获取 简历列表 ****************/
getResumes: function() {
let that = this;
console.log("获取 简历列表");
// let obj = [];
let obj = [{
"id": "0",
}, {
"id": "1",
}];
that.setData({
resumes: obj,
})
if (obj.length > 0) {
let currentTab = this.data.currentTab;
console.log("当前选中的tab", currentTab, );
that.getChoosedResume(currentTab); // 获取 简历信息
} else {
console.log("无简历,去添加简历");
wx.navigateTo({
url: '../resumeAdd/resumeAdd',
})
}
},

/**************** 获取 简历信息 ****************/
getChoosedResume: function(currentTab) {
console.log("访问获取简历信息接口", currentTab);
let that = this;
if (currentTab == 0) {
console.log("选中第0项");
that.setData({
choosedResume: {
"id": "0",
"applicant": "WHITE", // 应聘者姓名
"sex": "女", // 性别
"age": "18", // 年龄
"dates": "1988-04-16", // 出生年月
"city": "杭州", // 城市
"workExperience": "10", // 工作经验
"mobilePhone": "1008610086", // 手机号
"email": "1008610086@qq.com", // 邮箱

"workNature": "全职", // 工作性质
"workPlace": "杭州", // 工作地点
"expectedSalary": "8001-10000元/月", // 期望薪资
"jobCategory": "艺术/设计", // 职位类别
"industryCategory": "教育/培训/院校", // 行业类别

"workUndergo": [{
"companyName": "浙江某某有限公司", // 公司名称
"jobTitle": "设计师助理", // 职位名称
"monthlySalary": "3001-4000元/月", // 当月月薪
"workingTimeS": "2016-6", // 在职时间(开始)
"workingTimeE": "2017-6", // 在职时间(结束)
"subordinateIndustry": "教育/培训/院校", // 所属行业
"jobDescription": "工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述", // 工作描述
}, {
"companyName": "浙江某某有限公司", // 公司名称
"jobTitle": "设计师", // 职位名称
"monthlySalary": "6001-8000元/月", // 当月月薪
"workingTimeS": "2017-6", // 在职时间(开始)
"workingTimeE": "2019-6", // 在职时间(结束)
"subordinateIndustry": "教育/培训/院校", // 所属行业
"jobDescription": "工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述工作描述", // 工作描述
}, ], // 工作经历

"educationBackground": [{
"schoolName": "清华大学", // 学校名称
"professional": "服装设计", // 所学专业
"recordFormalSchooling": "本科", // 最高学历
"schoolTimeS": "2012-9", // 在校时间(开始)
"schoolTimeE": "2016-6", // 在校时间(结束)
}, ], // 教育背景
}
})
} else if (currentTab == 1) {
console.log("选中第1项");
that.setData({
choosedResume: {
"id": "1",
"applicant": "BLACK",
"sex": "男",
"age": "50",
"city": "北京",
"workExperience": "30年",
"mobilePhone": "1008610086",
"email": "1008610086@qq.com",
}
})
}
},

4. 最终效果

------------- The End -------------

本文标题:微信小程序-仿智联页面-简历管理

文章作者:White

发布时间:2019年05月08日 - 22:05

最后更新:2019年05月08日 - 22:05

原始链接:http://yoursite.com/2019/05/08/WX-fangZhiLianStyle-resumeManagement/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。