work.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660
  1. <template>
  2. <view class="index-page">
  3. <!-- 顶部 -->
  4. <view class="index-navbar">
  5. <view style="position: relative;height: 392rpx;">
  6. <image class="index-bg" src="@/static/images/bg.png" mode=""></image>
  7. <u-navbar bgColor='rgba(0,0,0,0)' placeholder @leftClick="return1">
  8. </u-navbar>
  9. <view class="header-down " :style="{marginTop:height+'rpx'}"
  10. style="padding: 28rpx 0 0 32rpx;box-sizing: border-box;">
  11. <view class="mingpianfont">
  12. 工作经历
  13. </view>
  14. <view class="explain">
  15. <text>完善的工作经历会让HR和猎头更了解你</text>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. <!-- 个人信息 -->
  21. <view class="personal" v-if="radiovalue1==2 &&job_experience3.length>0 ">
  22. <view class="" v-for="(item,index) in job_experience3" :key="index">
  23. <view class="body-input u-flex-col u-row-center ">
  24. <text class="input-title">公司名称</text>
  25. <u--input :value="item.company_name" customStyle="padding:0 !important" type="text"
  26. placeholder="请填写您的公司名称" border placeholderClass='input-style'
  27. v-model="job_experience3[index].company_name"></u--input>
  28. </view>
  29. <view class="body-input u-flex-col u-row-center" @click="tohangye(index)">
  30. <text class="input-title">公司行业</text>
  31. <view class="">
  32. <u--input :value="item.industry_name" :disabled="true" disabledColor="#fff"
  33. customStyle="padding:0 !important" type="text" placeholder="请选择您的公司行业" border
  34. placeholderClass='input-style' suffixIcon="arrow-right"
  35. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  36. v-model="job_experience3[index].industry_name"></u--input>
  37. </view>
  38. </view>
  39. <view class="body-input u-flex-col u-row-center">
  40. <text class="input-title">所属部门</text>
  41. <u--input :value="department" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  42. placeholder="请填写您的的所属部门" border placeholderClass='input-style'
  43. v-model="job_experience3[index].department"></u--input>
  44. </view>
  45. <view class="body-input u-flex-col u-row-center">
  46. <text class="input-title">职业名称</text>
  47. <u--input :value="job_name" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  48. placeholder="请填写您的职业名称" border placeholderClass='input-style'
  49. v-model="job_experience3[index].job_name"></u--input>
  50. </view>
  51. <view class="body-input u-flex-col u-row-center">
  52. <text class="input-title">在职时间</text>
  53. <view class="u-flex u-row-between">
  54. <view class="" @click="entryShow = true">
  55. <u--input :value="start_time" :disabled="true" disabledColor="#fff"
  56. customStyle="padding:0 !important" type="text" placeholder="入职时间" border
  57. placeholderClass='input-style' v-model="job_experience3[index].start_time"></u--input>
  58. </view>
  59. <view class="">-</view>
  60. <view class="" @click="dimissionShow = true">
  61. <u--input :value="item.end_time" :disabled="true" disabledColor="#fff"
  62. customStyle="padding:0 !important" type="text" placeholder="离职时间" inputAlign="center"
  63. border placeholderClass='input-style'
  64. v-model="job_experience3[index].end_time"></u--input>
  65. </view>
  66. </view>
  67. </view>
  68. <view class="body-input u-flex-col u-row-center">
  69. <text class="input-title">离职原因</text>
  70. <u--input :value="level_reason" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  71. placeholder="请填写离职原因" border placeholderClass='input-style'
  72. v-model="job_experience3[index].level_reason"></u--input>
  73. </view>
  74. <view class="body-input u-flex-col u-row-center" @click="toworktion">
  75. <text class="input-title">工作内容</text>
  76. <u--input :disabled="true" :value="item.work_content" customStyle="padding:0 !important" type="text"
  77. placeholder="请填写工作内容" border placeholderClass='input-style'
  78. v-model="job_experience3[index].work_content"></u--input>
  79. </view>
  80. </view>
  81. <view class="button" @click="next">
  82. 下一步
  83. </view>
  84. </view>
  85. <view class="personal" v-else>
  86. <view class="body-input u-flex-col u-row-center ">
  87. <text class="input-title">公司名称</text>
  88. <u--input customStyle="padding:0 !important" type="text" placeholder="请填写您的公司名称" border
  89. placeholderClass='input-style' v-model="job_experience.company_name"></u--input>
  90. </view>
  91. <view class="body-input u-flex-col u-row-center" @click="tohangye">
  92. <text class="input-title">公司行业</text>
  93. <view class="">
  94. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  95. placeholder="请选择您的公司行业" border placeholderClass='input-style' suffixIcon="arrow-right"
  96. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  97. v-model="job_experience.industry_name"></u--input>
  98. </view>
  99. </view>
  100. <view class="body-input u-flex-col u-row-center">
  101. <text class="input-title">所属部门</text>
  102. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写您的的所属部门"
  103. border placeholderClass='input-style' v-model="job_experience.department"></u--input>
  104. </view>
  105. <view class="body-input u-flex-col u-row-center">
  106. <text class="input-title">职业名称</text>
  107. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写您的职业名称"
  108. border placeholderClass='input-style' v-model="job_experience.job_name"></u--input>
  109. </view>
  110. <view class="body-input u-flex-col u-row-center">
  111. <text class="input-title">在职时间</text>
  112. <view class="u-flex u-row-between">
  113. <view class="" @click="entryShow = true">
  114. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  115. placeholder="入职时间" border placeholderClass='input-style'
  116. v-model="job_experience.start_time"></u--input>
  117. </view>
  118. <view class="">-</view>
  119. <view class="" @click="dimissionShow = true">
  120. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  121. placeholder="离职时间" inputAlign="center" border placeholderClass='input-style'
  122. v-model="job_experience.end_time"></u--input>
  123. </view>
  124. </view>
  125. </view>
  126. <view class="body-input u-flex-col u-row-center">
  127. <text class="input-title">离职原因</text>
  128. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写离职原因"
  129. border placeholderClass='input-style' v-model="job_experience.level_reason"></u--input>
  130. </view>
  131. <view class="body-input u-flex-col u-row-center" @click="toworktion">
  132. <text class="input-title">工作内容</text>
  133. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写工作内容" border
  134. placeholderClass='input-style' v-model="job_experience.work_content"></u--input>
  135. </view>
  136. <view class="button" @click="next">
  137. 下一步
  138. </view>
  139. </view>
  140. <!-- 选择器 -->
  141. <u-datetime-picker title="入职时间" :minDate="minDate1" @confirm="entryConfirm" :show="entryShow" mode="year-month"
  142. @cancel='entryShow = false'></u-datetime-picker>
  143. <u-datetime-picker title="离职时间" :minDate="minDate" @confirm="dimissionConfirm" :show="dimissionShow"
  144. mode="year-month" @cancel='dimissionShow = false'></u-datetime-picker>
  145. </view>
  146. </template>
  147. <script>
  148. import {
  149. get_category_industry,
  150. index
  151. } from "@/units/inquire.js"
  152. export default {
  153. data() {
  154. return {
  155. entryShow: false,
  156. dimissionShow: false,
  157. industryShow: false,
  158. minDate: "",
  159. radiovalue1: "",
  160. minDate1: "",
  161. job_experience3: [],
  162. job_experience: {
  163. industry_name: "", //公司行业名称
  164. industry_id: "", //公司行业id
  165. company_name: "", //公司名称
  166. start_time: "", //在职时间
  167. end_time: "", //离职时间
  168. department: "", //所属部门
  169. job_name: "",
  170. level_reason: "", //离职原因
  171. work_content: "", //工作内容
  172. }
  173. }
  174. },
  175. onLoad() {
  176. this.minDate = Number(new Date('2000-01-01'));
  177. this.minDate1 = Number(new Date('1980-01-01'));
  178. if (uni.getStorageSync("job_experience1")) {
  179. this.job_experience = uni.getStorageSync("job_experience1")
  180. }
  181. if (uni.getStorageSync("job_experience3")) {
  182. this.job_experience3 = uni.getStorageSync("job_experience3")
  183. }
  184. if (uni.getStorageSync("radiovalue1")) {
  185. this.radiovalue1 = uni.getStorageSync("radiovalue1")
  186. }
  187. },
  188. methods: {
  189. getdata(item) {
  190. console.log(item);
  191. },
  192. toworktion(index) {
  193. if (this.radiovalue1 == 2) {
  194. uni.navigateTo({
  195. url: '../pagesA/worktion?concent=' + this.job_experience[index].work_content,
  196. events:{
  197. todcp:res=>{
  198. this.job_experience[index].work_content = res
  199. }
  200. }
  201. })
  202. } else {
  203. uni.navigateTo({
  204. url: '../pagesA/worktion?concent=' + this.job_experience.work_content,
  205. events:{
  206. todcp:res=>{
  207. this.job_experience.work_content = res
  208. }
  209. }
  210. })
  211. }
  212. },
  213. tohangye(index) {
  214. uni.navigateTo({
  215. url: "../pagesA/change-hangye1",
  216. events: {
  217. changehangye: (res) => {
  218. // this.job_experience.industry_first = res[0].id
  219. this.job_experience.industry_id = res[1].id
  220. this.job_experience.industry_name = res[1].name
  221. if (this.radiovalue1 == 2) {
  222. this.job_experience3[index].industry_name = res[1].name
  223. }
  224. }
  225. }
  226. })
  227. },
  228. async entryConfirm(e) {
  229. const timeFormat = uni.$u.timeFormat;
  230. console.log(e.value);
  231. let timeValue = await timeFormat(e.value, 'yyyy-mm');
  232. this.job_experience.start_time = timeValue;
  233. this.entryShow = false
  234. },
  235. async dimissionConfirm(e) {
  236. const timeFormat = uni.$u.timeFormat;
  237. let timeValue = await timeFormat(e.value, 'yyyy-mm');
  238. this.job_experience.end_time = timeValue;
  239. this.dimissionShow = false
  240. },
  241. return1() {
  242. uni.navigateBack()
  243. },
  244. next() {
  245. if (this.radiovalue1 == 2) {
  246. var tongguo = true
  247. this.job_experience3.forEach((item) => {
  248. console.log('导入', item);
  249. for (var key in item) {
  250. console.log('key', key);
  251. console.log('key', item[key]);
  252. if (key == "company_name" && item[key] == "") {
  253. this.$u.toast("请填写公司名称")
  254. tongguo = false
  255. return
  256. }
  257. if (key == "industry_name" && !item[key]) {
  258. tongguo = false
  259. this.$u.toast("请选择您的公司行业")
  260. return
  261. }
  262. if (key == "department" && item[key] == "") {
  263. tongguo = false
  264. this.$u.toast("请填写您的所属部门")
  265. return
  266. }
  267. if (key == "job_name" && item[key] == "") {
  268. tongguo = false
  269. this.$u.toast("请填写您的职业名称")
  270. return
  271. }
  272. if (key == "start_time" && item[key] == "") {
  273. tongguo = false
  274. this.$u.toast("请选择入职时间")
  275. return
  276. }
  277. if (key == "end_time" && item[key] == "") {
  278. tongguo = false
  279. this.$u.toast("请选择离职时间")
  280. return
  281. }
  282. if (key == "level_reason" && item[key] == "") {
  283. tongguo = false
  284. this.$u.toast("请填写离职原因")
  285. return
  286. }
  287. if (key == "work_content" && item[key] == "") {
  288. tongguo = false
  289. this.$u.toast("请填写工作内容")
  290. return
  291. }
  292. }
  293. })
  294. if (tongguo) {
  295. uni.navigateTo({
  296. url: "/pagesA/Project "
  297. })
  298. }
  299. } else {
  300. if (!this.job_experience.company_name) {
  301. this.$u.toast("请填写公司名称")
  302. return
  303. }
  304. if (!this.job_experience.industry_name) {
  305. this.$u.toast("请选择您的公司行业")
  306. return
  307. }
  308. if (!this.job_experience.department) {
  309. this.$u.toast("请填写您的所属部门")
  310. return
  311. }
  312. if (!this.job_experience.job_name) {
  313. this.$u.toast("请填写您的职业名称")
  314. return
  315. }
  316. if (!this.job_experience.start_time) {
  317. this.$u.toast("请选择入职时间")
  318. return
  319. }
  320. if (!this.job_experience.end_time) {
  321. this.$u.toast("请选择离职时间")
  322. return
  323. }
  324. if (!this.job_experience.level_reason) {
  325. this.$u.toast("请填写离职原因")
  326. return
  327. }
  328. if (!this.job_experience.work_content) {
  329. this.$u.toast("请填写工作内容")
  330. return
  331. }
  332. uni.navigateTo({
  333. url: "/pagesA/Project "
  334. })
  335. }
  336. let pre = "job_experience"
  337. let nObj = Object.keys(this.job_experience).reduce((a, c) => (a[`${pre}.${c}`] = this.job_experience[c],
  338. a), {});
  339. uni.setStorageSync("job_experience", nObj)
  340. uni.setStorageSync("job_experience1", this.job_experience)
  341. uni.setStorageSync("job_experience3", this.job_experience3)
  342. return
  343. }
  344. }
  345. }
  346. </script>
  347. <style lang="scss">
  348. page {
  349. background-color: #F3F3F3;
  350. }
  351. .index-page {
  352. overflow: hidden;
  353. background-color: #fff;
  354. .mingpianfont {
  355. height: 50rpx;
  356. font-size: 36rpx;
  357. font-family: PingFangSC-Medium, PingFang SC;
  358. font-weight: 500;
  359. color: #FFFFFF;
  360. line-height: 50rpx;
  361. }
  362. .explain {
  363. margin-top: 24rpx;
  364. width: 528rpx;
  365. height: 36rpx;
  366. font-size: 26rpx;
  367. font-family: PingFangSC-Regular, PingFang SC;
  368. font-weight: 400;
  369. color: #FFFFFF;
  370. line-height: 36rpx;
  371. }
  372. //个人信息
  373. .personal {
  374. width: 750rpx;
  375. background: #FFFFFF;
  376. border-radius: 28rpx 28rpx 0rpx 0rpx;
  377. margin-top: -40rpx;
  378. position: relative;
  379. z-index: 99;
  380. padding: 40rpx 32rpx 0;
  381. // margin-bottom: 60rpx;
  382. box-sizing: border-box;
  383. .body-input {
  384. height: 170rpx;
  385. border-bottom: 2rpx solid #F4F4F4;
  386. .input-title {
  387. font-size: 26rpx;
  388. font-family: PingFangSC-Regular, PingFang SC;
  389. font-weight: 400;
  390. color: #888888;
  391. margin-bottom: 20rpx;
  392. margin-top: 30rpx;
  393. box-sizing: border-box;
  394. }
  395. .input-style {
  396. font-size: 32rpx;
  397. font-family: PingFangSC-Regular, PingFang SC;
  398. font-weight: 400;
  399. color: #CACACA;
  400. }
  401. }
  402. .button {
  403. width: 686rpx;
  404. height: 88rpx !important;
  405. background: #0C66C2;
  406. border-radius: 12rpx;
  407. font-size: 32rpx;
  408. font-family: PingFangSC-Medium, PingFang SC;
  409. font-weight: 500;
  410. color: #FFFFFF;
  411. line-height: 88rpx;
  412. margin: 10rpx 0 0rpx 0;
  413. display: flex;
  414. justify-content: center;
  415. margin-bottom: 30rpx;
  416. margin-top: 20rpx;
  417. }
  418. }
  419. .index-item {
  420. // width: 702rpx;
  421. // background: #FFFFFF;
  422. // border-radius: 20rpx;
  423. // margin: 20rpx auto;
  424. // padding: 0 20rpx 24rpx 10rpx;
  425. .item-down {
  426. text:first-child {
  427. font-size: 22rpx;
  428. font-family: SFPro-Regular, SFPro;
  429. font-weight: 400;
  430. color: #666666;
  431. }
  432. text:last-child {
  433. font-size: 22rpx;
  434. font-family: PingFangSC-Regular, PingFang SC;
  435. font-weight: 400;
  436. color: #666666;
  437. }
  438. }
  439. .item-gongsi {
  440. margin-bottom: 16rpx;
  441. .text2 {
  442. font-size: 24rpx;
  443. font-family: SFPro-Regular, SFPro;
  444. font-weight: 400;
  445. color: #666666;
  446. }
  447. .logo {
  448. width: 42rpx;
  449. height: 42rpx;
  450. border-radius: 10rpx;
  451. margin-right: 16rpx;
  452. }
  453. .text1 {
  454. max-width: 192rpx;
  455. font-size: 24rpx;
  456. font-family: PingFangSC-Regular, PingFang SC;
  457. font-weight: 400;
  458. color: #444444;
  459. margin-right: 12rpx;
  460. }
  461. }
  462. .item-label {
  463. margin-bottom: 20rpx;
  464. text {
  465. margin-right: 16rpx;
  466. line-height: 46rpx;
  467. background: #F7F7F7;
  468. border-radius: 4rpx;
  469. padding: 0 14rpx;
  470. font-size: 24rpx;
  471. font-family: PingFangSC-Regular, PingFang SC;
  472. font-weight: 400;
  473. color: #5F5F5F;
  474. }
  475. }
  476. .item-top {
  477. height: 88rpx;
  478. .text1 {
  479. font-size: 32rpx;
  480. font-family: PingFangSC-Medium, PingFang SC;
  481. font-weight: 500;
  482. color: #222222;
  483. margin-right: 16rpx;
  484. }
  485. .text2 {
  486. width: 50rpx;
  487. line-height: 32rpx;
  488. background: rgba(255, 83, 53, 0.1);
  489. border-radius: 4rpx;
  490. text-align: center;
  491. font-size: 20rpx;
  492. font-family: PingFangSC-Regular, PingFang SC;
  493. font-weight: 400;
  494. color: #FF5335;
  495. margin-right: 12rpx;
  496. }
  497. .text3 {
  498. width: 90rpx;
  499. line-height: 32rpx;
  500. background: #FFF2E8;
  501. border-radius: 4rpx;
  502. text-align: center;
  503. font-size: 20rpx;
  504. font-family: PingFangSC-Regular, PingFang SC;
  505. font-weight: 400;
  506. color: #FF8620;
  507. margin-right: 12rpx;
  508. }
  509. .text4 {
  510. line-height: 32rpx;
  511. background: #E6EFF8;
  512. border-radius: 4rpx;
  513. padding: 0 4rpx;
  514. text-align: center;
  515. font-size: 20rpx;
  516. font-family: SFPro-Regular, SFPro;
  517. font-weight: 400;
  518. color: #0C66C2;
  519. }
  520. .text5 {
  521. font-size: 32rpx;
  522. font-family: JDZhengHT-Regular, JDZhengHT;
  523. font-weight: 400;
  524. color: #0C66C2;
  525. }
  526. }
  527. }
  528. .index-navbar {
  529. position: sticky;
  530. top: 0;
  531. left: 0;
  532. width: 750rpx;
  533. z-index: 10;
  534. .header-down {
  535. height: 92rpx;
  536. padding: 20rpx 24rpx;
  537. box-sizing: border-box;
  538. .font {
  539. font-size: 40rpx;
  540. font-family: PingFangSC-Medium, PingFang SC;
  541. font-weight: 500;
  542. color: #222222;
  543. }
  544. .right-item {
  545. padding: 0 16rpx;
  546. height: 52rpx;
  547. background: #F3F3F3;
  548. border-radius: 4rpx;
  549. margin-left: 20rpx;
  550. .text {
  551. margin-right: 4rpx;
  552. font-size: 26rpx;
  553. font-family: PingFangSC-Regular, PingFang SC;
  554. font-weight: 400;
  555. color: #666666;
  556. }
  557. }
  558. .down-left {
  559. .text {
  560. margin-right: 4rpx;
  561. font-size: 26rpx;
  562. font-family: PingFangSC-Medium, PingFang SC;
  563. font-weight: 500;
  564. color: #222222;
  565. }
  566. }
  567. }
  568. .index-bg {
  569. position: absolute;
  570. top: 0;
  571. left: 0;
  572. z-index: -1;
  573. width: 750rpx;
  574. height: 392rpx;
  575. }
  576. }
  577. .index-header {
  578. flex: 1;
  579. padding: 0 32rpx;
  580. height: 50rpx;
  581. .index-search {
  582. width: 200rpx;
  583. height: 64rpx;
  584. background: #FFFFFF;
  585. border-radius: 20rpx;
  586. padding: 0 28rpx;
  587. .text1 {
  588. font-size: 24rpx;
  589. font-family: PingFangSC-Regular, PingFang SC;
  590. font-weight: 400;
  591. color: #999999;
  592. margin-left: 16rpx;
  593. }
  594. }
  595. .index-tabs {
  596. text:first-child {
  597. font-size: 36rpx;
  598. font-family: PingFangSC-Medium, PingFang SC;
  599. font-weight: 500;
  600. color: #222222;
  601. }
  602. text:last-child {
  603. width: 76rpx;
  604. height: 12rpx;
  605. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  606. margin-top: -20rpx;
  607. border-radius: 100rpx;
  608. }
  609. }
  610. }
  611. }
  612. ::v-deep .u-navbar__content__left {
  613. padding: 0 !important;
  614. }
  615. ::v-deep .u-subsection {
  616. width: 312rpx !important;
  617. }
  618. </style>