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