project.vue 13 KB

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