resume.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. <template>
  2. <view>
  3. <view class="resumepage">
  4. <view class="u-flex u-row-between">
  5. <view class="">
  6. <view class="u-flex">
  7. <text style="margin-right: 20rpx;font-size: 52rpx;">{{from.name}}</text>
  8. <u-icon @click="onchange" name="edit-pen-fill" color="#777" size="22"></u-icon>
  9. </view>
  10. <view class="top-font" style="margin-top: 20rpx;">
  11. <text style="margin-right: 12rpx;">{{from.birthday_text}}岁</text>|
  12. <text style="margin-left: 12rpx;margin-right: 12rpx;">{{from.experience}}年工作经验</text>|
  13. <text style="margin-left: 12rpx;margin-right: 12rpx;">{{from.education_name}}</text>|
  14. <text style="margin-left: 12rpx;">{{from.domicile_city.slice(0,-1)}}</text>
  15. </view>
  16. </view>
  17. <image style="width: 136rpx;height: 136rpx;border-radius:50%;" :src="from.avatar" mode=""></image>
  18. </view>
  19. <view class="" style="margin-top: 30rpx;">
  20. <view class="u-flex u-row-between">
  21. <text class="title">个人优势</text>
  22. <u-icon name="edit-pen-fill" color="#777" size="22" @click="toadvantage"></u-icon>
  23. </view>
  24. <view class="mar">
  25. <view type="text" placeholder="编辑优势亮点,展示我的独特态度" v-model="from.personal_advantage">
  26. {{from.personal_advantage||''}}
  27. </view>
  28. </view>
  29. </view>
  30. <view class="" style="border-top:2rpx solid #F0F0F0;margin-top: 32rpx;">
  31. <view class="u-flex ">
  32. <text class="title">求职状态</text>
  33. </view>
  34. <view class="u-flex u-row-between" style="margin-top: 20rpx;">
  35. <input type="text" placeholder="请选择你的求职状态" v-model="from.job_status_name">
  36. <u-icon name="arrow-right" @click="show =true" size="12" class="address"></u-icon>
  37. </view>
  38. </view>
  39. <view class="" style="border-top:2rpx solid #F0F0F0;margin-top: 32rpx;">
  40. <view class="u-flex u-row-between">
  41. <text class="title">求职意向</text>
  42. <view class="" style="margin-top: 34rpx;">
  43. <u-icon @click="toapply(1)" name="plus-circle" size="20"></u-icon>
  44. </view>
  45. </view>
  46. <view class="" style="margin-top: 40rpx;margin-bottom: 20rpx;" v-for="(item,index) in job_intention1"
  47. :key="item.id" @click="toapply(2,item.id)">
  48. <view class="u-flex u-row-between">
  49. <view class="">
  50. <text>{{item.category_job_name}}</text>
  51. <text style="margin-left: 28rpx;">{{item.salary || 0}}k</text>
  52. </view>
  53. <u-icon name="arrow-right" size="12"></u-icon>
  54. </view>
  55. <text
  56. style="margin-top: 20rpx;font-size: 28rpx;font-family: PingFangSC-Regular, PingFang SC;font-weight: 400;color: #777777;">{{item.city}}·{{item.category_industry_name}}</text>
  57. </view>
  58. </view>
  59. <view class="" style="border-top:2rpx solid #F0F0F0;margin-top: 32rpx;">
  60. <view class="u-flex u-row-between">
  61. <text class="title">工作经历</text>
  62. <view style="margin-top:34rpx"><u-icon name="plus-circle" size="20" @click="towork(1)"></u-icon>
  63. </view>
  64. </view>
  65. <view class="" v-for="(item,index) in job_experience1" :key="item.id" @click="towork(2,item.id)">
  66. <view class="u-flex u-row-between" style="margin-top:40rpx ;">
  67. <text>{{item.company_name}}</text>
  68. <view class="u-flex">
  69. <text class="time">{{item.start_time}}-{{item.end_time}}</text>
  70. <u-icon name="arrow-right" size="12"></u-icon>
  71. </view>
  72. </view>
  73. <view class="" style="margin-top: 20rpx;font-size: 28rpx;
  74. font-family: PingFangSC-Regular, PingFang SC;
  75. font-weight: 400;
  76. color: #333333;">
  77. <text>{{item.job_name}}|</text>
  78. <text>{{item.department}}</text>
  79. </view>
  80. <view class="concent">
  81. {{item.work_content}}
  82. </view>
  83. </view>
  84. </view>
  85. <view class="" style="margin-top: 40rpx;border-top: 2rpx solid #F0F0F0;">
  86. <view class="u-flex u-row-between">
  87. <text class="title">项目经历</text>
  88. <view style="margin-top:34rpx"><u-icon name="plus-circle" size="20" @click="toproject(1)"></u-icon>
  89. </view>
  90. </view>
  91. <view class="" style="margin-top: 40rpx;" v-for="(item,index) in project_experience1" :key="item.id"
  92. @click="toproject(2,item.id)">
  93. <view class="u-flex u-row-between">
  94. <text>{{item.company_name}}</text>
  95. <view class="u-flex">
  96. <text class="time">{{item.start_time}}-{{item.end_time}}</text>
  97. <u-icon name="arrow-right" size="12"></u-icon>
  98. </view>
  99. </view>
  100. <view class="mar">
  101. <text>{{item.role}}</text>
  102. </view>
  103. <view class="concent">
  104. {{item.description}}
  105. </view>
  106. </view>
  107. <view class=""></view>
  108. </view>
  109. <view class="" style="margin-top: 40rpx;border-top: 2rpx solid #F0F0F0;">
  110. <view class="u-flex u-row-between">
  111. <text class="title">教育经历</text>
  112. <view style="margin-top:34rpx"><u-icon name="plus-circle" size="20" @click="toteach(1)"></u-icon>
  113. </view>
  114. </view>
  115. <view class="" style="margin-top: 40rpx;" v-for="(item,index) in education_experience1" :key="index"
  116. @click="toteach(2,item.id)">
  117. <view class="u-flex u-row-between">
  118. <text>{{item.name}}</text>
  119. <view class="u-flex">
  120. <text class="time">{{item.start_time}}-{{item.end_time}}</text>
  121. <u-icon name="arrow-right" size="12"></u-icon>
  122. </view>
  123. </view>
  124. <view class="">
  125. <text>{{item.major}}</text>
  126. </view>
  127. </view>
  128. </view>
  129. <view class="" style="margin-top: 40rpx;border-top: 2rpx solid #F0F0F0;">
  130. <view class="u-flex u-row-between">
  131. <text class="title">语言能力</text>
  132. <view style="margin-top:34rpx"><u-icon name="plus-circle" size="20" @click="tolanguage(1)"></u-icon>
  133. </view>
  134. </view>
  135. <view class="mar" v-for="(item,index) in language1" @click="tolanguage(2,item.id)">
  136. <view class="u-flex u-row-between">
  137. <text>{{item.language_name}}</text>
  138. <view class="u-flex">
  139. <text>{{item.level_name}}</text>
  140. <u-icon name="arrow-right" size="12"></u-icon>
  141. </view>
  142. </view>
  143. </view>
  144. </view>
  145. <view class="" style="margin-top: 40rpx;border-top: 2rpx solid #F0F0F0;">
  146. <view class="u-flex u-row-between">
  147. <text class="title">专业技能与证书</text>
  148. <view style="margin-top:34rpx"><u-icon name="plus-circle" size="20"
  149. @click="tocertificate()"></u-icon></view>
  150. </view>
  151. <view class="mar u-flex">
  152. <!-- <view style="flex: 1;" class="item">{{certificate.professional_skill}}</view> -->
  153. <view class="texta item" v-for="(item,index) in professional_skill" :key="index">
  154. {{item}}
  155. </view>
  156. </view>
  157. <view style="margin-top: 32rpx;" class="u-flex u-row-between" v-for="(item,index) in certificate1"
  158. :key="index">
  159. <text>{{item.certificate}}</text>
  160. <text class="time">{{item.certificate_date}}</text>
  161. </view>
  162. </view>
  163. <view class="" style="margin-top: 40rpx;border-top: 2rpx solid #F0F0F0;margin-bottom:118rpx ;">
  164. <view class="u-flex u-row-between">
  165. <text class="title">附加信息</text>
  166. <!-- <u-icon name="plus-circle" size="20"></u-icon> -->
  167. </view>
  168. <view class="mar">
  169. <input @confirm="touptate" v-model="from.additional_info" type="text" placeholder="请输入附加消息">
  170. </view>
  171. </view>
  172. <view class="" style="height: 60rpx;"></view>
  173. </view>
  174. <view class="back u-flex" style="margin-top: 118rpx;">
  175. <view class="left" @click="jianlishow = true">
  176. 简历导入
  177. </view>
  178. <view class="right" @click="preview">
  179. <text style="opacity: 1;color: #0C66C2;">预览</text>
  180. </view>
  181. <view class="safe-area-inset-bottom"></view>
  182. </view>
  183. <view class="safe-area-inset-bottom"></view>
  184. <!-- <u-picker :show="jobshow" :columns="joblist"></u-picker> -->
  185. <u-picker @cancel="show = false" :show="show" :columns="columns" keyName="name" @confirm="enter"></u-picker>
  186. <u-popup customStyle="padding:32rpx 32rpx 6rpx" :show="jianlishow" mode="bottom" @close="close" @open="open"
  187. :closeable="true">
  188. <view class="">
  189. <view class="u-flex u-row-center">
  190. <text class="one">已有简历直接导入</text>
  191. </view>
  192. <view class="u-flex u-row-center">
  193. <text class="two">智能解析、快捷导入,提升在线简历完整度</text>
  194. </view>
  195. <view class="" style="margin-top: 72rpx;">
  196. <u-radio-group v-model="radiovalue1" placement="column" @change="groupChange">
  197. <view class="u-flex u-row-between">
  198. <view class="u-flex">
  199. <image style="width: 80rpx;height: 80rpx;" src="/static/images/pdf.png" mode=""></image>
  200. <view class="">
  201. <text class="three">{{file1.title}}.pdf</text>
  202. <view class="fore">{{file1.updatetime}}上传</view>
  203. </view>
  204. </view>
  205. <view class="">
  206. <u-radio :name="item.name">
  207. </u-radio>
  208. </view>
  209. </view>
  210. <view class="updata u-flex u-row-center" @click="toupload">
  211. 上传新简历
  212. </view>
  213. <view @click="jianlishow = false" class="enter u-flex u-row-center">
  214. 确定
  215. </view>
  216. </u-radio-group>
  217. </view>
  218. </view>
  219. </u-popup>
  220. </view>
  221. </template>
  222. <script setup>
  223. import {
  224. resumeDetail,
  225. get_job_status,
  226. update,
  227. } from "@/units/inquire.js"
  228. export default {
  229. data() {
  230. return {
  231. i: 0,
  232. jianlishow: false,
  233. jlid: '',
  234. show: false,
  235. columns: [
  236. []
  237. ],
  238. certificate1: [],
  239. professional_skill: [],
  240. from: {
  241. avatar: "",
  242. name: "",
  243. birthday_text: "",
  244. personal_advantage: "", //个人优势
  245. additional_info: "", //附加信息
  246. experience: "",
  247. job_status_id: "", //string 求职状态ID
  248. job_status_name: "", //求职状态名称
  249. education_name: '',
  250. domicile_city: ""
  251. },
  252. //求职意向
  253. job_intention: {
  254. job_date: "", //date 求职时间(求职意向
  255. province_id: "", //string 期望省份ID(求职意向
  256. city_id: "", //string 期望城市ID(求职意向
  257. province: "", //string 期望省份名称(求职意向
  258. city: "", //string 期望城市名称(求职意向
  259. salary_type: "", //string 薪资类型: year=年薪;month=月薪(求职意向
  260. salary: "", //string 薪水(求职意向
  261. salary_month: "", //string 一年多少薪(求职意向
  262. category_field_id: "", //string 领域ID(求职意向
  263. category_field_name: "", //string 领域名称(求职意向
  264. category_industry_first: "", //string 行业一级ID(求职意向
  265. category_industry_id: "", //string 行业ID(求职意向
  266. category_industry_first_name: "", //string 行业一级名称(求职意向
  267. category_industry_name: "", //string 行业名称(求职意向
  268. category_job_first: "", //string 职业分类一级ID(求职意向
  269. category_job_second: "", //string 职业分类二级ID(求职意向
  270. category_job_id: "", //string 职位分类ID(求职意向
  271. category_job_first_name: "", //string 职业分类一级名称(求职意向
  272. category_job_second_name: "", //string 职业分类二级名称(求职意向
  273. category_job_name: "", //string 职位分类名称(求职意向)
  274. is_pay: "",
  275. },
  276. //工作经历
  277. job_experience: {
  278. company_name: "", // string 公司名称(工作经历
  279. industry_id: "", //string 公司行业ID(工作经历
  280. department: "", //tring 所属部门(工作经历
  281. job_name: "", //ing 职位名称(工作经历
  282. underling_count: "", //unt string 下属数量(工作经历
  283. report_to: "", //ring 汇报对象(工作经历
  284. start_time: "", //ate 在职开始时间: 如 2019-01-01(工作经历
  285. end_time: "", //e 在职结束时间: 如 2019-01-01(工作经历
  286. level_reason: "", // string 离职原因(工作经历
  287. work_content: "", // string 工作内容(工作经历
  288. },
  289. //项目经历
  290. project_experience: {
  291. name: "", //string 项目名称(项目经历
  292. company_name: "", //string 公司名称(项目经历
  293. role: "", // string 项目角色(项目经历
  294. start_time: "", //tring 开始时间(项目经历
  295. end_time: "", //string 结束时间(项目经历
  296. description: "", // string 项目描述(项目经
  297. },
  298. //教育经历
  299. education_experience: {
  300. name: "", //string 学校名称(教育经历
  301. is_recruit: "", //string 是否统招: 1.是, 0.不是(教育经历
  302. education_id: "", //string 学历ID(教育经历
  303. education_name: "", //string 学历名称(教育经历
  304. major: "", //string 专业(教育经历
  305. start_time: "", //string 开始时间 如 2019-01-01(教育经历
  306. end_time: "", //string 结束时间 如 2019-01-01(教育经历
  307. },
  308. //语言能力
  309. language: {
  310. language_id: "", // tring 语言ID(语言能力
  311. level_id: "", // ng 水平ID(语言能力
  312. language_name: "", // string 语言名称(语言能力
  313. level_name: "", // ring 水平名称(语言能力
  314. },
  315. certificate: {
  316. certificate: "",
  317. certificate_date: ""
  318. },
  319. file1: {
  320. createtime: "",
  321. file: "",
  322. id: '',
  323. resume_id: '',
  324. title: "",
  325. updatetime: "",
  326. user_id: '',
  327. },
  328. //附件简历
  329. file: {
  330. file: "", //string 附件(附件简历
  331. title: "", //string 附件名称(附件简历
  332. },
  333. education_experience1: [], //教育经历
  334. job_experience1: [], //工作经历
  335. job_intention1: [], //教育经历
  336. project_experience1: [], //项目经历
  337. language1: [], //语言能力
  338. joblist: [],
  339. }
  340. },
  341. onLoad(options) {
  342. this.get_job_status()
  343. this.i = options.i
  344. // this.resumeDetail()
  345. },
  346. onShow() {
  347. this.resumeDetail()
  348. },
  349. methods: {
  350. touptate() {
  351. update({
  352. additional_info: this.from.additional_info,
  353. source_type: "resume",
  354. source_id: this.jlid
  355. }).then(res => {
  356. this.resumeDetail()
  357. })
  358. },
  359. toupload() {
  360. uni.navigateTo({
  361. url: "/pagesD/upload",
  362. events: {
  363. up: res => {
  364. this.resumeDetail()
  365. }
  366. }
  367. })
  368. },
  369. open() {
  370. // console.log('open');
  371. },
  372. close() {
  373. this.jianlishow = false
  374. // console.log('close');
  375. },
  376. preview() {
  377. uni.navigateTo({
  378. url: "/pagesD/preview"
  379. })
  380. },
  381. tocertificate() {
  382. uni.navigateTo({
  383. url: "/pagesD/certificate"
  384. })
  385. },
  386. tolanguage(type, id) {
  387. uni.navigateTo({
  388. url: "/pagesD/language?type=" + type + "&id=" + id
  389. })
  390. },
  391. toteach(type, id) {
  392. uni.navigateTo({
  393. url: "/pagesD/teach?type=" + type + "&id=" + id
  394. })
  395. },
  396. toproject(type, id) {
  397. uni.navigateTo({
  398. url: "/pagesD/project?type=" + type + "&id=" + id
  399. })
  400. },
  401. enter(e) {
  402. this.from.job_status_name = e.value[0].name
  403. this.from.job_status_id = e.value[0].id
  404. this.show = false
  405. },
  406. get_job_status() {
  407. get_job_status().then(res => {
  408. this.columns[0] = res.data
  409. })
  410. },
  411. toadvantage() {
  412. uni.navigateTo({
  413. url: "/pagesD/advantage",
  414. events: {
  415. todcp: (res) => {
  416. this.from.personal_advantage = res
  417. update({
  418. personal_advantage: this.from.personal_advantage,
  419. source_type: "resume",
  420. source_id: this.jlid
  421. }).then(res => {
  422. this.resumeDetail()
  423. })
  424. }
  425. }
  426. })
  427. },
  428. // get_job_status() {
  429. // get_job_status().then(res => {
  430. // this.joblist = res.data
  431. // })
  432. // },
  433. toapply(type, id) {
  434. uni.navigateTo({
  435. url: "/pagesD/apply?type=" + type + "&id=" + id,
  436. events: {
  437. apply: (res) => {
  438. console.log(res);
  439. }
  440. }
  441. })
  442. },
  443. towork(type, id) {
  444. uni.navigateTo({
  445. url: "/pagesD/work?key=" + type + "&id=" + id,
  446. events: {
  447. work: (res) => {
  448. console.log(res);
  449. }
  450. }
  451. })
  452. },
  453. resumeDetail() {
  454. resumeDetail().then(res => {
  455. this.from.avatar = res.data.avatar
  456. this.from.additional_info = res.data.additional_info
  457. this.from.personal_advantage = res.data.personal_advantage
  458. this.jlid = res.data.id
  459. this.from.name = res.data.name
  460. this.from.birthday_text = res.data.birthday_text
  461. // this.job_intention.province = res.data.job_intention[0].province,
  462. this.from.experience = res.data.experience
  463. this.from.education_name = res.data.education_name
  464. this.from.domicile_city = res.data.domicile_city
  465. this.education_experience1 = res.data.education_experience
  466. this.job_experience1 = res.data.job_experience
  467. this.job_intention1 = res.data.job_intention
  468. this.language1 = res.data.language
  469. this.project_experience1 = res.data.project_experience
  470. this.from.job_status_name = res.data.job_status_name
  471. this.from.job_status_id = res.data.job_status_id
  472. this.certificate.certificate = res.data.certificate.certificate
  473. this.certificate.certificate_date = res.data.certificate.certificate_date
  474. this.certificate1 = res.data.certificate
  475. this.professional_skill = res.data.certificate[0].professional_skill.split("、")
  476. if (res.data.file == null) {
  477. this.file_show = 0
  478. } else {
  479. this.file_show = 1
  480. this.file1 = res.data.file
  481. this.file.id = res.data.file.id
  482. this.file.title = res.data.file.title
  483. }
  484. })
  485. },
  486. onchange() {
  487. uni.navigateTo({
  488. url: "/pagesD/personal-infor?id=" + this.jlid
  489. })
  490. }
  491. }
  492. }
  493. </script>
  494. <style lang="scss">
  495. .time {
  496. font-size: 24rpx;
  497. font-family: SFPro, SFPro;
  498. font-weight: 400;
  499. color: #888888;
  500. }
  501. .top-font {
  502. font-size: 26rpx;
  503. font-family: SFPro, SFPro;
  504. font-weight: 400;
  505. color: #555555;
  506. }
  507. .enter {
  508. background: #0C66C2;
  509. border-radius: 12rpx;
  510. margin-top: 68rpx;
  511. font-size: 32rpx;
  512. font-family: PingFangSC-Medium, PingFang SC;
  513. font-weight: 500;
  514. color: #FFFFFF;
  515. height: 84rpx;
  516. }
  517. .updata {
  518. height: 88rpx;
  519. font-size: 32rpx;
  520. font-family: PingFangSC-Medium, PingFang SC;
  521. font-weight: 500;
  522. color: #0C66C2;
  523. background: rgba(12, 102, 194, 0.1);
  524. border-radius: 8rpx;
  525. margin-top: 60rpx;
  526. }
  527. .texta {
  528. margin-right: 20rpx;
  529. }
  530. .three {
  531. font-size: 32rpx;
  532. font-family: PingFangSC-Regular, PingFang SC;
  533. font-weight: 400;
  534. color: #222222;
  535. }
  536. .fore {
  537. font-size: 24rpx;
  538. font-family: SFPro-Regular, SFPro;
  539. font-weight: 400;
  540. color: #777777;
  541. }
  542. .one {
  543. font-size: 36rpx;
  544. font-family: PingFangSC-Medium, PingFang SC;
  545. font-weight: 500;
  546. color: #222222;
  547. }
  548. .two {
  549. font-size: 26rpx;
  550. font-family: PingFangSC-Regular, PingFang SC;
  551. font-weight: 400;
  552. color: #555555;
  553. margin-top: 24rpx;
  554. }
  555. .concent {
  556. font-size: 28rpx;
  557. font-family: PingFangSC-Regular, PingFang SC;
  558. font-weight: 400;
  559. color: #555555;
  560. margin-top: 20rpx;
  561. }
  562. .mar {
  563. margin-top: 20rpx;
  564. }
  565. .title {
  566. font-size: 32rpx;
  567. font-family: PingFangSC-Medium, PingFang SC;
  568. font-weight: 500;
  569. color: #222222;
  570. margin-top: 34rpx;
  571. }
  572. .item {
  573. height: 48rpx;
  574. background: #F4F4F4;
  575. border-radius: 6rpx;
  576. padding: 5rpx 14rpx;
  577. box-sizing: border-box;
  578. line-height: 48rpx;
  579. }
  580. .resumepage {
  581. padding: 0 32rpx;
  582. background-color: #fff;
  583. }
  584. .back {
  585. padding: 16rpx 32rpx;
  586. background: #FFFFFF;
  587. height: 166rpx;
  588. box-sizing: border-box;
  589. position: fixed;
  590. bottom: 0;
  591. left: 0;
  592. .left {
  593. width: 356rpx;
  594. background: #0C66C2;
  595. border-radius: 12rpx;
  596. font-size: 32rpx;
  597. font-family: PingFangSC-Medium, PingFang SC;
  598. font-weight: 500;
  599. color: #FFFFFF;
  600. height: 88rpx;
  601. line-height: 88rpx;
  602. margin-right: 24rpx;
  603. text-align: center;
  604. }
  605. .right {
  606. width: 304rpx;
  607. // opacity: 0.1;
  608. // background: #0C66C2;
  609. border-radius: 12rpx;
  610. font-size: 32rpx;
  611. font-family: PingFangSC-Medium, PingFang SC;
  612. font-weight: 500;
  613. color: #0C66C2;
  614. height: 88rpx;
  615. line-height: 88rpx;
  616. text-align: center;
  617. background-color: rgba(12, 102, 194, 0.1);
  618. }
  619. }
  620. </style>