joinPerson.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. <template>
  2. <view class="content">
  3. <view class="" v-if="state == 0 || state == 2">
  4. <view class="top hflex acenter" v-if="state == 2">
  5. <image src="/static/images/comment/person.png" class="top_img"></image>
  6. <view class="top_text">你已成功加入人才库</view>
  7. </view>
  8. <view class="box" style="margin-top: 20rpx;">
  9. <view class="box_title">基本信息</view>
  10. <view class="hflex acenter jbetween cell">
  11. <view class="left">姓名</view>
  12. <u-input v-model="userInfo.name" placeholder="请输入您的姓名" inputAlign="right" border="none"></u-input>
  13. </view>
  14. <picker @change="bindSexChange" :value="index" :range="sexList">
  15. <view class="hflex acenter jbetween cell">
  16. <view class="left">性别</view>
  17. <u-input border="none" v-model="userInfo.sex" disabled disabledColor="#fff" placeholder="请选择您的性别" suffixIcon="arrow-right" suffixIconStyle="color: #b7b7b7" inputAlign="right"></u-input>
  18. </view>
  19. </picker>
  20. <picker @change="bindAgeChange" :value="index" :range="ageList">
  21. <view class="hflex acenter jbetween cell">
  22. <view class="left">年龄</view>
  23. <u-input border="none" v-model="userInfo.age" disabled disabledColor="#fff" placeholder="请选择您的年龄" suffixIcon="arrow-right" suffixIconStyle="color: #b7b7b7" inputAlign="right"></u-input>
  24. </view>
  25. </picker>
  26. <view class="hflex acenter jbetween cell">
  27. <view class="left">籍贯</view>
  28. <u-input v-model="userInfo.place" placeholder="请输入您的籍贯" inputAlign="right" border="none"></u-input>
  29. </view>
  30. <view class="hflex acenter jbetween cell">
  31. <view class="left">电话</view>
  32. <u-input v-model="userInfo.phone" placeholder="请输入您的电话" inputAlign="right" border="none"></u-input>
  33. </view>
  34. <view class="hflex acenter jbetween cell">
  35. <view class="left">邮箱</view>
  36. <u-input v-model="userInfo.email" placeholder="请输入您的邮箱" inputAlign="right" border="none"></u-input>
  37. </view>
  38. <picker mode="region" @change="changeAddress" :value="index" >
  39. <view class="hflex acenter jbetween cell">
  40. <view class="left">所在地区</view>
  41. <u-input border="none" inputAlign="right" v-model="userInfo.region" placeholder="请选择省市区" suffixIcon="arrow-right" suffixIconStyle="color: #b7b7b7"></u-input>
  42. </view>
  43. </picker>
  44. <view class="hflex acenter jbetween cell">
  45. <view class="left">详细地址</view>
  46. <u-input v-model="userInfo.address" placeholder="街道,楼牌号等" inputAlign="right" border="none"></u-input>
  47. </view>
  48. <view class="hflex acenter jbetween cell">
  49. <view class="left">毕业院校</view>
  50. <u-input v-model="userInfo.school" placeholder="请输入您的毕业院校" inputAlign="right" border="none"></u-input>
  51. </view>
  52. <picker @change="bindEduChange" :value="index" :range="educationList">
  53. <view class="hflex acenter jbetween cell">
  54. <view class="left">学历</view>
  55. <u-input border="none" v-model="userInfo.education" disabled disabledColor="#fff" placeholder="请选择您的学历" suffixIcon="arrow-right" suffixIconStyle="color: #b7b7b7" inputAlign="right"></u-input>
  56. </view>
  57. </picker>
  58. <view class="hflex acenter jbetween cell">
  59. <view class="left">专业</view>
  60. <u-input v-model="userInfo.major" placeholder="请输入您的专业" inputAlign="right" border="none"></u-input>
  61. </view>
  62. <view class="hflex acenter jbetween cell">
  63. <view class="left">工作年限</view>
  64. <u-input v-model="userInfo.year" placeholder="请输入您的工作年限" inputAlign="right" border="none"></u-input>
  65. </view>
  66. <view class="hflex acenter jbetween cell">
  67. <view class="left">个人特长</view>
  68. <u-input v-model="userInfo.specialty" placeholder="请输入您的特长" inputAlign="right" border="none"></u-input>
  69. </view>
  70. <view class="hflex acenter jbetween cell">
  71. <view class="left">专业技能</view>
  72. <u-input v-model="userInfo.skill" placeholder="请输入您的技能描述" inputAlign="right" border="none"></u-input>
  73. </view>
  74. <picker @change="bindTitleChange" :value="index" :range="titleList" range-key="name">
  75. <view class="hflex acenter jbetween cell">
  76. <view class="left">职称选择</view>
  77. <u-input border="none" v-model="userInfo.title" placeholder="请选择您的职称" suffixIcon="arrow-right" suffixIconStyle="color: #b7b7b7" inputAlign="right"></u-input>
  78. </view>
  79. </picker>
  80. </view>
  81. <view class="box">
  82. <view class="box_title">简历及相关信息</view>
  83. <view class="hflex acenter jbetween">
  84. <view class="box_title">工作经历</view>
  85. <view class="hflex acenter" @click="perfect(3)">
  86. <u-icon name="plus-circle-fill" color="#555555" size="12"></u-icon>
  87. <view class="text_style1">添加</view>
  88. </view>
  89. </view>
  90. <block v-for="(item,index) in userInfo.work" :key="index">
  91. <view class="padT-26" @click="editInfo(item.id)">
  92. <view class="hflex acenter jbetween">
  93. <view class="box_title">{{item.content.company_name}}</view>
  94. <u-icon name="arrow-right" color="#555555" size="12"></u-icon>
  95. </view>
  96. <view class="hflex acenter padT-26">
  97. <view class="box_subTitle padR-24">{{item.content.on_job_start}}-{{item.content.on_job_end}}</view>
  98. <view class="box_subTitle">{{item.content.postion_name}}</view>
  99. </view>
  100. <view class="hflex fwrap padT-26 box_subTitle">工作内容:{{item.content.company_content}}</view>
  101. </view>
  102. </block>
  103. <view class="box_title">培训经历</view>
  104. <view class="box_subTitle">请详细描述您的培训经历</view>
  105. <u-input v-model="userInfo.train" border="bottom"></u-input>
  106. <view class="box_title">资质证书</view>
  107. <view class="box_subTitle">至少上传一张专业证书(包含毕业证书),证书请完整展示姓名,证书名称,证书日期及有效期</view>
  108. <view class="upload">
  109. <u-upload :fileList="userInfo.imgList" @afterRead="afterRead" @delete="deletePic" :maxCount="10" name="1" multiple :previewFullImage="true" width="110" height="110">
  110. <image src="/static/images/comment/upload.png" style="width: 220rpx;height: 220rpx;"></image>
  111. </u-upload>
  112. </view>
  113. <view class="bottom" v-if="state == 0">
  114. <view class="btn" @click="submit">提交</view>
  115. </view>
  116. </view>
  117. </view>
  118. <view class="box1 vflex acenter" v-if="state == 1">
  119. <image src="/static/images/comment/wait.png" class="box1_img"></image>
  120. <view class="box1_title">审核中</view>
  121. <view class="box1_subTitle">预计审核时间3个工作日</view>
  122. <view class="box1_subTitle">请留意当前页面变动</view>
  123. <view class="btn" @click="result">返回</view>
  124. </view>
  125. <view class="box1 vflex acenter" v-if="state == 3">
  126. <image src="/static/images/comment/error.png" class="box1_img"></image>
  127. <view class="box1_title">审核失败</view>
  128. <view class="box1_subTitle">驳回原因</view>
  129. <view class="box1_subTitle">{{reason}}<span style="color: #506dff;margin-left: 8rpx;" @click="edit">立即修改></span></view>
  130. <view class="btn" @click="result">返回</view>
  131. </view>
  132. </view>
  133. </template>
  134. <script>
  135. import $api from '@/static/js/api.js'
  136. var that = ''
  137. export default {
  138. data() {
  139. return {
  140. userInfo: {
  141. id: '',
  142. name: '', //姓名
  143. sex: '', //性别
  144. age: '', //年龄
  145. place: '', //籍贯
  146. phone: '', //电话
  147. email: '', //邮箱
  148. region: '', //所在地区
  149. school: '',
  150. major: '',
  151. year: '',
  152. province: '',
  153. city:'',
  154. area: '',
  155. address: '', //详细地址
  156. education: '', //学历
  157. specialty: '', //特长
  158. skill: '', //技能
  159. title: '', //职称
  160. title_id: '',
  161. work: '', //工作经历
  162. imgList: [], //资质证明
  163. train: '', //培训经历
  164. },
  165. sexList: ['男','女'],
  166. ageList: [],
  167. educationList: ['初中及以下','中专/中技','高中','大专','本科','硕士','博士'],
  168. titleList: [],
  169. state: 0, //0 未加入,1 待审核,2 审核成功, 3审核失败
  170. reason: '资料填写不完整', //驳回原因
  171. }
  172. },
  173. onLoad() {
  174. that = this
  175. that.getPrepage()
  176. that.getzclist()
  177. that.getageList()
  178. },
  179. methods: {
  180. getPrepage() {
  181. var pages = getCurrentPages()
  182. var prePage = pages[pages.length - 2]
  183. var pooltalent = prePage.$vm.user.pooltalent
  184. if(pooltalent) {
  185. that.userInfo = {
  186. name: pooltalent.name, //姓名
  187. sex: pooltalent.sex, //性别
  188. age: pooltalent.age, //年龄
  189. place: pooltalent.jg, //籍贯
  190. phone: pooltalent.phone, //电话
  191. email: pooltalent.email, //邮箱
  192. region: pooltalent.province + pooltalent.city + pooltalent.area, //所在地区
  193. province: pooltalent.province,
  194. city:pooltalent.city,
  195. area: pooltalent.area,
  196. address: pooltalent.address, //详细地址
  197. education: pooltalent.xl, //学历
  198. specialty: pooltalent.tc, //特长
  199. skill: pooltalent.jn, //技能
  200. title: pooltalent.zc.name, //职称
  201. title_id: pooltalent.zc.id,
  202. work: pooltalent.gzll, //工作经历
  203. train: pooltalent.pxjl,
  204. id: pooltalent.id
  205. }
  206. var imgs = pooltalent.zz_imgs
  207. let obj = {}
  208. for(let key in imgs) {
  209. obj[key] = imgs[key]
  210. }
  211. var imgList = Object.keys(obj).map(item => ({
  212. url: obj[item]
  213. }))
  214. for(let i in imgList) {
  215. console.log(imgList[i].url.length);
  216. if(imgList[i].url.length <= 1) {
  217. console.log(imgList[i]);
  218. imgList.splice(i, 1)
  219. }
  220. }
  221. that.userInfo.imgList = imgList
  222. that.state = pooltalent.audit
  223. that.reason = pooltalent.why
  224. }
  225. },
  226. getzclist() {
  227. $api.req({
  228. url: '/data/api.auth.Center/zclist',
  229. method: 'POST',
  230. }, function(res) {
  231. if(res.code == 1) {
  232. that.titleList = res.data
  233. }
  234. })
  235. },
  236. getageList() {
  237. for(var i=18;i<=60;i++) {
  238. that.ageList.push(i)
  239. }
  240. },
  241. // 选择性别
  242. bindSexChange(e) {
  243. that.userInfo.sex = that.sexList[e.detail.value]
  244. },
  245. // 选择年龄
  246. bindAgeChange(e) {
  247. that.userInfo.age = that.ageList[e.detail.value]
  248. },
  249. // 选择所在地区
  250. changeAddress(e) {
  251. that.userInfo.region = e.detail.value[0] + '-' + e.detail.value[1] + '-' + e.detail.value[2]
  252. that.userInfo.province = e.detail.value[0]
  253. that.userInfo.city = e.detail.value[1]
  254. that.userInfo.area = e.detail.value[2]
  255. },
  256. // 选择学历
  257. bindEduChange(e) {
  258. that.userInfo.education = that.educationList[e.detail.value]
  259. },
  260. // 选择职称
  261. bindTitleChange(e) {
  262. that.userInfo.title = that.titleList[e.detail.value].name
  263. that.userInfo.title_id = that.titleList[e.detail.value].id
  264. },
  265. // 删除图片
  266. deletePic(event) {
  267. console.log(event);
  268. that.userInfo.imgList.splice(event.index, 1)
  269. console.log(that.userInfo.imgList);
  270. },
  271. // 新增图片
  272. async afterRead(event) {
  273. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  274. let lists = [].concat(event.file)
  275. let imgListLen = that.userInfo.imgList.length
  276. lists.map((item) => {
  277. that.userInfo.imgList.push({
  278. ...item,
  279. status: 'uploading',
  280. message: '上传中'
  281. })
  282. })
  283. for (let i = 0; i < lists.length; i++) {
  284. const result = await that.uploadFilePromise(lists[i].url)
  285. let item = that.userInfo.imgList[imgListLen]
  286. that.userInfo.imgList.splice(imgListLen, 1, Object.assign(item, {
  287. status: 'success',
  288. message: '',
  289. url: result.url
  290. }))
  291. imgListLen++
  292. }
  293. },
  294. // 上传图片
  295. uploadFilePromise(url) {
  296. return new Promise((resolve, reject) => {
  297. let a = uni.uploadFile({
  298. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  299. filePath: url,
  300. name: 'file',
  301. header: {
  302. 'content-type': 'application/x-www-form-urlencoded',
  303. 'api-token': uni.getStorageSync('token').token?uni.getStorageSync('token').token:'',
  304. 'api-name': 'wxapp'
  305. },
  306. formData: {
  307. user: 'test'
  308. },
  309. success: (res) => {
  310. setTimeout(() => {
  311. var data = JSON.parse(res.data)
  312. resolve(data.data)
  313. }, 1000)
  314. }
  315. });
  316. })
  317. },
  318. // 立即修改
  319. edit() {
  320. that.state = 0
  321. },
  322. // 添加或完善
  323. perfect(index) {
  324. $api.jump('/page_mine/pages/service/perfect')
  325. },
  326. // 修改工作经历
  327. editInfo(id) {
  328. $api.jump('/page_mine/pages/service/perfect?id='+ id)
  329. },
  330. // 返回
  331. result() {
  332. $api.jump(-1)
  333. },
  334. // 提交
  335. submit() {
  336. var u = that.userInfo
  337. var zz_imgs = ""
  338. if ($api.formCheck(u.name,'truename') && $api.formCheck(u.sex,'required') && $api.formCheck(u.age,'required') && $api.formCheck(u.phone,'mobile') && $api.formCheck(u.email,'email')) {
  339. if(u.imgList.length > 0) {
  340. for(var i=0;i<u.imgList.length;i++) {
  341. if(i == u.imgList.length - 1) {
  342. zz_imgs += u.imgList[i].url
  343. } else {
  344. zz_imgs += u.imgList[i].url + ','
  345. }
  346. }
  347. }
  348. $api.req({
  349. url: '/data/api.auth.Center/adduppooltalent',
  350. method: 'POST',
  351. data: {
  352. id: u.id?u.id: '',
  353. name: u.name,
  354. sex: u.sex,
  355. age: u.age,
  356. jg: u.place,
  357. phone: u.phone,
  358. email: u.email,
  359. province: u.province,
  360. city: u.city,
  361. area: u.area,
  362. address: u.address,
  363. graduate_school: u.school,
  364. xl: u.education,
  365. major: u.major,
  366. working_life: u.year,
  367. tc: u.specialty,
  368. jn: u.skill,
  369. zc_id: u.title_id,
  370. gzll: u.work,
  371. zz_imgs: zz_imgs,
  372. pxjl: u.train
  373. }
  374. }, function(res) {
  375. if(res.code == 1) {
  376. $api.info(res.info)
  377. that.state = 1
  378. // $api.jump('/pages/tabbar/mine/mine',3)
  379. }
  380. })
  381. }
  382. }
  383. },
  384. }
  385. </script>
  386. <style lang="scss" scoped>
  387. .content::v-deep {
  388. background-color: #f4f4f4;
  389. // padding-top: 20rpx;
  390. .top {
  391. width: 100%;
  392. height: 60rpx;
  393. background-color: #f8efe2;
  394. padding: 20rpx 32rpx;
  395. box-sizing: border-box;
  396. .top_img {
  397. width: 36rpx;
  398. height: 36rpx;
  399. }
  400. .top_text {
  401. font-size: 26rpx;
  402. margin-left: 6rpx;
  403. color: #330e00;
  404. }
  405. }
  406. .box {
  407. width: 100%;
  408. background-color: #fff;
  409. margin-bottom: 20rpx;
  410. box-sizing: border-box;
  411. padding: 28rpx 30rpx;
  412. .box_title {
  413. font-size: 30rpx;
  414. color: #222;
  415. margin: 20rpx 0 32rpx;
  416. }
  417. .box_subTitle {
  418. font-size: 26rpx;
  419. color: #b7b7b7;
  420. // margin: ;
  421. }
  422. .upload {
  423. margin-top: 20rpx;
  424. width: 100%;
  425. padding-bottom: 20rpx;
  426. border-bottom: 1rpx solid #f4f4f4;
  427. }
  428. .u-input {
  429. width: 100%;
  430. // margin-top: 30rpx;
  431. }
  432. .cell {
  433. width: 100%;
  434. padding: 20rpx 0;
  435. .left {
  436. font-size: 28rpx;
  437. color: #222;
  438. }
  439. .u-input {
  440. font-size: 28rpx;
  441. color: #222;
  442. }
  443. }
  444. .bottom {
  445. margin: 80rpx 0 50rpx;
  446. .btn {
  447. width: 100%;
  448. height: 88rpx;
  449. border-radius: 44rpx;
  450. text-align: center;
  451. line-height: 88rpx;
  452. background-color: #506dff;
  453. font-size: 36rpx;
  454. color: #fff;
  455. }
  456. }
  457. }
  458. .box1 {
  459. width: 100%;
  460. height: 100vh;
  461. background-color: #fff;
  462. .box1_img {
  463. width: 124rpx;
  464. height: 124rpx;
  465. margin: 108rpx 0 40rpx;
  466. }
  467. .box1_title {
  468. font-size: 32rpx;
  469. color: #222;
  470. margin-bottom: 24rpx;
  471. }
  472. .box1_subTitle {
  473. margin: 12rpx 0;
  474. font-size: 26rpx;
  475. color: #595959;
  476. }
  477. .btn {
  478. width: 530rpx;
  479. height: 88rpx;
  480. background-color: #506dff;
  481. color: #fff;
  482. text-align: center;
  483. line-height: 88rpx;
  484. border-radius: 44rpx;
  485. font-size: 36rpx;
  486. margin-top: 122rpx;
  487. }
  488. }
  489. }
  490. </style>