teach.vue 11 KB

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