teach.vue 12 KB

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