work.vue 12 KB

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