certificate.vue 11 KB

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