work.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  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">
  22. <view class="body-input u-flex-col u-row-center ">
  23. <text class="input-title">公司名称</text>
  24. <u--input customStyle="padding:0 !important" type="text" placeholder="请填写您的公司名称" border
  25. placeholderClass='input-style' v-model="job_experience.company_name"></u--input>
  26. </view>
  27. <view class="body-input u-flex-col u-row-center" @click="tohangye">
  28. <text class="input-title">公司行业</text>
  29. <view class="">
  30. <u--input :disabled="true" disabledColor="#fff"
  31. customStyle="padding:0 !important" type="text" placeholder="请选择您的公司行业" border
  32. placeholderClass='input-style' suffixIcon="arrow-right"
  33. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  34. v-model="job_experience.industry_name"></u--input>
  35. </view>
  36. </view>
  37. <view class="body-input u-flex-col u-row-center">
  38. <text class="input-title">所属部门</text>
  39. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写您的的所属部门"
  40. border placeholderClass='input-style' v-model="job_experience.department"></u--input>
  41. </view>
  42. <view class="body-input u-flex-col u-row-center">
  43. <text class="input-title">职业名称</text>
  44. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写您的职业名称"
  45. border placeholderClass='input-style' v-model="job_experience.job_name"></u--input>
  46. </view>
  47. <view class="body-input u-flex-col u-row-center">
  48. <text class="input-title">在职时间</text>
  49. <view class="u-flex u-row-between">
  50. <view class="" @click="entryShow = true">
  51. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  52. placeholder="入职时间" border placeholderClass='input-style'
  53. v-model="job_experience.start_time"></u--input>
  54. </view>
  55. <view class="">-</view>
  56. <view class="" @click="dimissionShow = true">
  57. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  58. placeholder="离职时间" inputAlign="center" border placeholderClass='input-style'
  59. v-model="job_experience.end_time"></u--input>
  60. </view>
  61. </view>
  62. </view>
  63. <view class="body-input u-flex-col u-row-center">
  64. <text class="input-title">离职原因</text>
  65. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写离职原因"
  66. border placeholderClass='input-style' v-model="job_experience.level_reason"></u--input>
  67. </view>
  68. <view class="body-input u-flex-col u-row-center">
  69. <text class="input-title">工作内容</text>
  70. <u--input customStyle="padding:0 !important" type="text" placeholder="请填写工作内容" border
  71. placeholderClass='input-style' v-model="job_experience.work_content"></u--input>
  72. </view>
  73. <view class="button" @click="next">
  74. 下一步
  75. </view>
  76. </view>
  77. <!-- 选择器 -->
  78. <u-datetime-picker title="入职时间" :minDate="minDate1" @confirm="entryConfirm" :show="entryShow" mode="year-month"
  79. @cancel='entryShow = false'></u-datetime-picker>
  80. <u-datetime-picker title="离职时间" :minDate="minDate" @confirm="dimissionConfirm" :show="dimissionShow" mode="year-month"
  81. @cancel='dimissionShow = false'></u-datetime-picker>
  82. </view>
  83. </template>
  84. <script>
  85. import {
  86. get_category_industry
  87. } from "@/units/inquire.js"
  88. export default {
  89. data() {
  90. return {
  91. entryShow: false,
  92. dimissionShow: false,
  93. industryShow: false,
  94. minDate: "",
  95. minDate1: "",
  96. job_experience: {
  97. industry_name: "", //公司行业名称
  98. industry_id: "", //公司行业id
  99. company_name: "", //公司名称
  100. start_time: "", //在职时间
  101. end_time: "", //离职时间
  102. department: "", //所属部门
  103. job_name: "",
  104. level_reason: "", //离职原因
  105. work_content: "", //工作内容
  106. }
  107. }
  108. },
  109. onLoad() {
  110. this.minDate = Number(new Date('2000-01-01'));
  111. this.minDate1 = Number(new Date('1980-01-01'));
  112. if(uni.getStorageSync("job_experience1")){
  113. this.job_experience = uni.getStorageSync("job_experience1")
  114. }
  115. },
  116. methods: {
  117. getdata(item) {
  118. console.log(item);
  119. },
  120. tohangye() {
  121. uni.navigateTo({
  122. url: "../pagesA/change-hangye1",
  123. events: {
  124. changehangye: (res) => {
  125. // this.job_experience.industry_first = res[0].id
  126. this.job_experience.industry_id = res[1].id
  127. this.job_experience.industry_name = res[1].name
  128. }
  129. }
  130. })
  131. },
  132. async entryConfirm(e) {
  133. const timeFormat = uni.$u.timeFormat;
  134. console.log(e.value);
  135. let timeValue = await timeFormat(e.value, 'yyyy-mm');
  136. this.job_experience.start_time = timeValue;
  137. this.entryShow = false
  138. },
  139. async dimissionConfirm(e) {
  140. const timeFormat = uni.$u.timeFormat;
  141. let timeValue = await timeFormat(e.value, 'yyyy-mm');
  142. this.job_experience.end_time = timeValue;
  143. this.dimissionShow = false
  144. },
  145. return1() {
  146. uni.navigateBack()
  147. },
  148. next() {
  149. if (!this.job_experience.company_name) {
  150. this.$u.toast("请填写公司名称")
  151. return
  152. }
  153. if (!this.job_experience.industry_name) {
  154. this.$u.toast("请选择您的公司行业")
  155. return
  156. }
  157. if (!this.job_experience.department) {
  158. this.$u.toast("请填写您的所属部门")
  159. return
  160. }
  161. if (!this.job_experience.job_name) {
  162. this.$u.toast("请填写您的职业名称")
  163. return
  164. }
  165. if (!this.job_experience.start_time) {
  166. this.$u.toast("请选择入职时间")
  167. return
  168. }
  169. if (!this.job_experience.end_time) {
  170. this.$u.toast("请选择离职时间")
  171. return
  172. }
  173. if (!this.job_experience.level_reason) {
  174. this.$u.toast("请填写离职原因")
  175. return
  176. }
  177. if (!this.job_experience.work_content) {
  178. this.$u.toast("请填写工作内容")
  179. return
  180. }
  181. let pre = "job_experience"
  182. let nObj = Object.keys(this.job_experience).reduce((a, c) => (a[`${pre}.${c}`] = this.job_experience[c], a), {});
  183. uni.setStorageSync("job_experience", nObj)
  184. uni.setStorageSync("job_experience1", this.job_experience)
  185. uni.navigateTo({
  186. url: "../pagesA/Project "
  187. })
  188. }
  189. }
  190. }
  191. </script>
  192. <style lang="scss">
  193. page {
  194. background-color: #F3F3F3;
  195. }
  196. .index-page {
  197. overflow: hidden;
  198. background-color: #fff;
  199. .mingpianfont {
  200. height: 50rpx;
  201. font-size: 36rpx;
  202. font-family: PingFangSC-Medium, PingFang SC;
  203. font-weight: 500;
  204. color: #FFFFFF;
  205. line-height: 50rpx;
  206. }
  207. .explain {
  208. margin-top: 24rpx;
  209. width: 528rpx;
  210. height: 36rpx;
  211. font-size: 26rpx;
  212. font-family: PingFangSC-Regular, PingFang SC;
  213. font-weight: 400;
  214. color: #FFFFFF;
  215. line-height: 36rpx;
  216. }
  217. //个人信息
  218. .personal {
  219. width: 750rpx;
  220. background: #FFFFFF;
  221. border-radius: 28rpx 28rpx 0rpx 0rpx;
  222. margin-top: -40rpx;
  223. position: relative;
  224. z-index: 99;
  225. padding: 40rpx 32rpx 0;
  226. margin-bottom: 60rpx;
  227. box-sizing: border-box;
  228. .body-input {
  229. height: 170rpx;
  230. border-bottom: 2rpx solid #F4F4F4;
  231. .input-title {
  232. font-size: 26rpx;
  233. font-family: PingFangSC-Regular, PingFang SC;
  234. font-weight: 400;
  235. color: #888888;
  236. margin-bottom: 20rpx;
  237. margin-top: 30rpx;
  238. box-sizing: border-box;
  239. }
  240. .input-style {
  241. font-size: 32rpx;
  242. font-family: PingFangSC-Regular, PingFang SC;
  243. font-weight: 400;
  244. color: #CACACA;
  245. }
  246. }
  247. .button {
  248. width: 686rpx;
  249. height: 88rpx !important;
  250. background: #0C66C2;
  251. border-radius: 12rpx;
  252. font-size: 32rpx;
  253. font-family: PingFangSC-Medium, PingFang SC;
  254. font-weight: 500;
  255. color: #FFFFFF;
  256. line-height: 88rpx;
  257. margin: 10rpx 0 0rpx 0;
  258. display: flex;
  259. justify-content: center;
  260. margin-bottom: 60rpx;
  261. margin-top: 20rpx;
  262. }
  263. }
  264. .index-item {
  265. // width: 702rpx;
  266. // background: #FFFFFF;
  267. // border-radius: 20rpx;
  268. // margin: 20rpx auto;
  269. // padding: 0 20rpx 24rpx 10rpx;
  270. .item-down {
  271. text:first-child {
  272. font-size: 22rpx;
  273. font-family: SFPro-Regular, SFPro;
  274. font-weight: 400;
  275. color: #666666;
  276. }
  277. text:last-child {
  278. font-size: 22rpx;
  279. font-family: PingFangSC-Regular, PingFang SC;
  280. font-weight: 400;
  281. color: #666666;
  282. }
  283. }
  284. .item-gongsi {
  285. margin-bottom: 16rpx;
  286. .text2 {
  287. font-size: 24rpx;
  288. font-family: SFPro-Regular, SFPro;
  289. font-weight: 400;
  290. color: #666666;
  291. }
  292. .logo {
  293. width: 42rpx;
  294. height: 42rpx;
  295. border-radius: 10rpx;
  296. margin-right: 16rpx;
  297. }
  298. .text1 {
  299. max-width: 192rpx;
  300. font-size: 24rpx;
  301. font-family: PingFangSC-Regular, PingFang SC;
  302. font-weight: 400;
  303. color: #444444;
  304. margin-right: 12rpx;
  305. }
  306. }
  307. .item-label {
  308. margin-bottom: 20rpx;
  309. text {
  310. margin-right: 16rpx;
  311. line-height: 46rpx;
  312. background: #F7F7F7;
  313. border-radius: 4rpx;
  314. padding: 0 14rpx;
  315. font-size: 24rpx;
  316. font-family: PingFangSC-Regular, PingFang SC;
  317. font-weight: 400;
  318. color: #5F5F5F;
  319. }
  320. }
  321. .item-top {
  322. height: 88rpx;
  323. .text1 {
  324. font-size: 32rpx;
  325. font-family: PingFangSC-Medium, PingFang SC;
  326. font-weight: 500;
  327. color: #222222;
  328. margin-right: 16rpx;
  329. }
  330. .text2 {
  331. width: 50rpx;
  332. line-height: 32rpx;
  333. background: rgba(255, 83, 53, 0.1);
  334. border-radius: 4rpx;
  335. text-align: center;
  336. font-size: 20rpx;
  337. font-family: PingFangSC-Regular, PingFang SC;
  338. font-weight: 400;
  339. color: #FF5335;
  340. margin-right: 12rpx;
  341. }
  342. .text3 {
  343. width: 90rpx;
  344. line-height: 32rpx;
  345. background: #FFF2E8;
  346. border-radius: 4rpx;
  347. text-align: center;
  348. font-size: 20rpx;
  349. font-family: PingFangSC-Regular, PingFang SC;
  350. font-weight: 400;
  351. color: #FF8620;
  352. margin-right: 12rpx;
  353. }
  354. .text4 {
  355. line-height: 32rpx;
  356. background: #E6EFF8;
  357. border-radius: 4rpx;
  358. padding: 0 4rpx;
  359. text-align: center;
  360. font-size: 20rpx;
  361. font-family: SFPro-Regular, SFPro;
  362. font-weight: 400;
  363. color: #0C66C2;
  364. }
  365. .text5 {
  366. font-size: 32rpx;
  367. font-family: JDZhengHT-Regular, JDZhengHT;
  368. font-weight: 400;
  369. color: #0C66C2;
  370. }
  371. }
  372. }
  373. .index-navbar {
  374. position: sticky;
  375. top: 0;
  376. left: 0;
  377. width: 750rpx;
  378. z-index: 10;
  379. .header-down {
  380. height: 92rpx;
  381. padding: 20rpx 24rpx;
  382. box-sizing: border-box;
  383. .font {
  384. font-size: 40rpx;
  385. font-family: PingFangSC-Medium, PingFang SC;
  386. font-weight: 500;
  387. color: #222222;
  388. }
  389. .right-item {
  390. padding: 0 16rpx;
  391. height: 52rpx;
  392. background: #F3F3F3;
  393. border-radius: 4rpx;
  394. margin-left: 20rpx;
  395. .text {
  396. margin-right: 4rpx;
  397. font-size: 26rpx;
  398. font-family: PingFangSC-Regular, PingFang SC;
  399. font-weight: 400;
  400. color: #666666;
  401. }
  402. }
  403. .down-left {
  404. .text {
  405. margin-right: 4rpx;
  406. font-size: 26rpx;
  407. font-family: PingFangSC-Medium, PingFang SC;
  408. font-weight: 500;
  409. color: #222222;
  410. }
  411. }
  412. }
  413. .index-bg {
  414. position: absolute;
  415. top: 0;
  416. left: 0;
  417. z-index: -1;
  418. width: 750rpx;
  419. height: 392rpx;
  420. }
  421. }
  422. .index-header {
  423. flex: 1;
  424. padding: 0 32rpx;
  425. height: 50rpx;
  426. .index-search {
  427. width: 200rpx;
  428. height: 64rpx;
  429. background: #FFFFFF;
  430. border-radius: 20rpx;
  431. padding: 0 28rpx;
  432. .text1 {
  433. font-size: 24rpx;
  434. font-family: PingFangSC-Regular, PingFang SC;
  435. font-weight: 400;
  436. color: #999999;
  437. margin-left: 16rpx;
  438. }
  439. }
  440. .index-tabs {
  441. text:first-child {
  442. font-size: 36rpx;
  443. font-family: PingFangSC-Medium, PingFang SC;
  444. font-weight: 500;
  445. color: #222222;
  446. }
  447. text:last-child {
  448. width: 76rpx;
  449. height: 12rpx;
  450. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  451. margin-top: -20rpx;
  452. border-radius: 100rpx;
  453. }
  454. }
  455. }
  456. }
  457. ::v-deep .u-navbar__content__left {
  458. padding: 0 !important;
  459. }
  460. ::v-deep .u-subsection {
  461. width: 312rpx !important;
  462. }
  463. </style>