teach.vue 14 KB

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