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' suffixIcon="arrow-right"
  47. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  48. v-model="project_experience.company_name"></u--input>
  49. </view>
  50. <view class="body-input u-flex-col u-row-center">
  51. <text class="input-title">项目角色</text>
  52. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写您的项目角色"
  53. border placeholderClass='input-style' suffixIcon="arrow-right"
  54. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  55. v-model="project_experience.role"></u--input>
  56. </view>
  57. <view class="body-input u-flex-col u-row-center" @click="todcp">
  58. <text class="input-title">项目描述</text>
  59. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  60. placeholder="请填写" border placeholderClass='input-style' suffixIcon="arrow-right"
  61. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  62. v-model="project_experience.description"></u--input>
  63. </view>
  64. <view class="body-input u-flex-col u-row-center " style="height: 250rpx;">
  65. </view>
  66. <view class="button" @click="next">
  67. 下一步
  68. </view>
  69. </view>
  70. <!-- 选择器 -->
  71. <u-datetime-picker title="项目开始时间" :minDate="minDate1" @confirm="entryConfirm" :show="entryShow" mode="date"
  72. @cancel='entryShow = false'></u-datetime-picker>
  73. <u-datetime-picker title="项目结束时间" :minDate="minDate" @confirm="dimissionConfirm" :show="dimissionShow"
  74. mode="date" @cancel='dimissionShow = false'></u-datetime-picker>
  75. </view>
  76. </template>
  77. <script>
  78. import {
  79. } from "@/units/inquire.js"
  80. export default {
  81. data() {
  82. return {
  83. height: '',
  84. dimissionShow: false,
  85. entryShow: false,
  86. minDate: '',
  87. minDate1: "",
  88. project_experience: {
  89. name: "", //项目名称
  90. start_time: "", //项目开始时间
  91. end_time: "", //项目结束时间
  92. description: "", //项目描述
  93. role: "", //项目角色
  94. company_name: "", //公司名称
  95. }
  96. }
  97. },
  98. onLoad() {
  99. this.minDate = Number(new Date('2000-01-01'));
  100. this.minDate1 = Number(new Date('2000-01-01'));
  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-dd');
  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-dd');
  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.navigateTo({
  159. url:'../pagesA/teach'
  160. })
  161. }
  162. }
  163. }
  164. </script>
  165. <style lang="scss">
  166. page {
  167. background-color: #F3F3F3;
  168. }
  169. .index-page {
  170. overflow: hidden;
  171. background: #fff;
  172. height: 100vh;
  173. .mingpianfont {
  174. height: 50rpx;
  175. font-size: 36rpx;
  176. font-family: PingFangSC-Medium, PingFang SC;
  177. font-weight: 500;
  178. color: #FFFFFF;
  179. line-height: 50rpx;
  180. }
  181. .explain {
  182. margin-top: 24rpx;
  183. width: 528rpx;
  184. height: 36rpx;
  185. font-size: 26rpx;
  186. font-family: PingFangSC-Regular, PingFang SC;
  187. font-weight: 400;
  188. color: #FFFFFF;
  189. line-height: 36rpx;
  190. }
  191. //个人信息
  192. .personal {
  193. width: 750rpx;
  194. background: #FFFFFF;
  195. border-radius: 28rpx 28rpx 0rpx 0rpx;
  196. margin-top: -40rpx;
  197. position: relative;
  198. z-index: 99;
  199. padding: 40rpx 32rpx 0;
  200. margin-bottom: 60rpx;
  201. box-sizing: border-box;
  202. .body-input {
  203. height: 170rpx;
  204. border-bottom: 2rpx solid #F4F4F4;
  205. .input-title {
  206. font-size: 26rpx;
  207. font-family: PingFangSC-Regular, PingFang SC;
  208. font-weight: 400;
  209. color: #888888;
  210. margin-bottom: 20rpx;
  211. margin-top: 30rpx;
  212. box-sizing: border-box;
  213. }
  214. .input-style {
  215. font-size: 32rpx;
  216. font-family: PingFangSC-Regular, PingFang SC;
  217. font-weight: 400;
  218. color: #CACACA;
  219. }
  220. }
  221. .button {
  222. width: 686rpx;
  223. height: 88rpx !important;
  224. background: #0C66C2;
  225. border-radius: 12rpx;
  226. font-size: 32rpx;
  227. font-family: PingFangSC-Medium, PingFang SC;
  228. font-weight: 500;
  229. color: #FFFFFF;
  230. line-height: 88rpx;
  231. margin: 10rpx 0 0rpx 0;
  232. display: flex;
  233. justify-content: center;
  234. margin-bottom: 60rpx;
  235. }
  236. }
  237. .index-item {
  238. // width: 702rpx;
  239. // background: #FFFFFF;
  240. // border-radius: 20rpx;
  241. // margin: 20rpx auto;
  242. // padding: 0 20rpx 24rpx 10rpx;
  243. .item-down {
  244. text:first-child {
  245. font-size: 22rpx;
  246. font-family: SFPro-Regular, SFPro;
  247. font-weight: 400;
  248. color: #666666;
  249. }
  250. text:last-child {
  251. font-size: 22rpx;
  252. font-family: PingFangSC-Regular, PingFang SC;
  253. font-weight: 400;
  254. color: #666666;
  255. }
  256. }
  257. .item-gongsi {
  258. margin-bottom: 16rpx;
  259. .text2 {
  260. font-size: 24rpx;
  261. font-family: SFPro-Regular, SFPro;
  262. font-weight: 400;
  263. color: #666666;
  264. }
  265. .logo {
  266. width: 42rpx;
  267. height: 42rpx;
  268. border-radius: 10rpx;
  269. margin-right: 16rpx;
  270. }
  271. .text1 {
  272. max-width: 192rpx;
  273. font-size: 24rpx;
  274. font-family: PingFangSC-Regular, PingFang SC;
  275. font-weight: 400;
  276. color: #444444;
  277. margin-right: 12rpx;
  278. }
  279. }
  280. .item-label {
  281. margin-bottom: 20rpx;
  282. text {
  283. margin-right: 16rpx;
  284. line-height: 46rpx;
  285. background: #F7F7F7;
  286. border-radius: 4rpx;
  287. padding: 0 14rpx;
  288. font-size: 24rpx;
  289. font-family: PingFangSC-Regular, PingFang SC;
  290. font-weight: 400;
  291. color: #5F5F5F;
  292. }
  293. }
  294. .item-top {
  295. height: 88rpx;
  296. .text1 {
  297. font-size: 32rpx;
  298. font-family: PingFangSC-Medium, PingFang SC;
  299. font-weight: 500;
  300. color: #222222;
  301. margin-right: 16rpx;
  302. }
  303. .text2 {
  304. width: 50rpx;
  305. line-height: 32rpx;
  306. background: rgba(255, 83, 53, 0.1);
  307. border-radius: 4rpx;
  308. text-align: center;
  309. font-size: 20rpx;
  310. font-family: PingFangSC-Regular, PingFang SC;
  311. font-weight: 400;
  312. color: #FF5335;
  313. margin-right: 12rpx;
  314. }
  315. .text3 {
  316. width: 90rpx;
  317. line-height: 32rpx;
  318. background: #FFF2E8;
  319. border-radius: 4rpx;
  320. text-align: center;
  321. font-size: 20rpx;
  322. font-family: PingFangSC-Regular, PingFang SC;
  323. font-weight: 400;
  324. color: #FF8620;
  325. margin-right: 12rpx;
  326. }
  327. .text4 {
  328. line-height: 32rpx;
  329. background: #E6EFF8;
  330. border-radius: 4rpx;
  331. padding: 0 4rpx;
  332. text-align: center;
  333. font-size: 20rpx;
  334. font-family: SFPro-Regular, SFPro;
  335. font-weight: 400;
  336. color: #0C66C2;
  337. }
  338. .text5 {
  339. font-size: 32rpx;
  340. font-family: JDZhengHT-Regular, JDZhengHT;
  341. font-weight: 400;
  342. color: #0C66C2;
  343. }
  344. }
  345. }
  346. .index-navbar {
  347. position: sticky;
  348. top: 0;
  349. left: 0;
  350. width: 750rpx;
  351. z-index: 10;
  352. .header-down {
  353. height: 92rpx;
  354. padding: 20rpx 24rpx;
  355. box-sizing: border-box;
  356. .font {
  357. font-size: 40rpx;
  358. font-family: PingFangSC-Medium, PingFang SC;
  359. font-weight: 500;
  360. color: #222222;
  361. }
  362. .right-item {
  363. padding: 0 16rpx;
  364. height: 52rpx;
  365. background: #F3F3F3;
  366. border-radius: 4rpx;
  367. margin-left: 20rpx;
  368. .text {
  369. margin-right: 4rpx;
  370. font-size: 26rpx;
  371. font-family: PingFangSC-Regular, PingFang SC;
  372. font-weight: 400;
  373. color: #666666;
  374. }
  375. }
  376. .down-left {
  377. .text {
  378. margin-right: 4rpx;
  379. font-size: 26rpx;
  380. font-family: PingFangSC-Medium, PingFang SC;
  381. font-weight: 500;
  382. color: #222222;
  383. }
  384. }
  385. }
  386. .index-bg {
  387. position: absolute;
  388. top: 0;
  389. left: 0;
  390. z-index: -1;
  391. width: 750rpx;
  392. height: 392rpx;
  393. }
  394. }
  395. .index-header {
  396. flex: 1;
  397. padding: 0 32rpx;
  398. height: 50rpx;
  399. .index-search {
  400. width: 200rpx;
  401. height: 64rpx;
  402. background: #FFFFFF;
  403. border-radius: 20rpx;
  404. padding: 0 28rpx;
  405. .text1 {
  406. font-size: 24rpx;
  407. font-family: PingFangSC-Regular, PingFang SC;
  408. font-weight: 400;
  409. color: #999999;
  410. margin-left: 16rpx;
  411. }
  412. }
  413. .index-tabs {
  414. text:first-child {
  415. font-size: 36rpx;
  416. font-family: PingFangSC-Medium, PingFang SC;
  417. font-weight: 500;
  418. color: #222222;
  419. }
  420. text:last-child {
  421. width: 76rpx;
  422. height: 12rpx;
  423. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  424. margin-top: -20rpx;
  425. border-radius: 100rpx;
  426. }
  427. }
  428. }
  429. }
  430. ::v-deep .u-navbar__content__left {
  431. padding: 0 !important;
  432. }
  433. ::v-deep .u-subsection {
  434. width: 312rpx !important;
  435. }
  436. </style>