teach.vue 16 KB

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