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