resumeDetail.vue 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090
  1. <template>
  2. <view class="resume-detail" :style="{ paddingTop: (12 + statusBarHeight + 88 - 60) + 'px' }">
  3. <!-- 固定顶部导航栏 -->
  4. <view class="fixed-nav" :style="{ paddingTop: (12 + statusBarHeight) + 'px' }">
  5. <view class="navbar">
  6. <view class="navbar-content">
  7. <view class="navbar-left" @click="goBack">
  8. <u-icon name="arrow-leftward" size="38" color="#333"></u-icon>
  9. </view>
  10. <view class="navbar-title">简历详情</view>
  11. <view class="nav-right">
  12. <view class="nav-icon" @click="setCollection">
  13. <image v-if="resumeData.isCollection == 0" src="/static/images/index/guanzhu.svg" class="icon-img"></image>
  14. <image v-else src="/static/images/index/gzActive.svg" style="width: 50rpx;height: 50rpx;"></image>
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. <!-- 用户信息区域 -->
  21. <view class="user-profile" style="margin-top: 20rpx;">
  22. <view class="profile-header">
  23. <view class="name-section">
  24. <view class="user-name">{{ resumeList.userName || '匿名用户' }}</view>
  25. <view class="status-tag">热门搜索</view>
  26. </view>
  27. <view class="avatar-container">
  28. <image :src="resumeList.userAvatar || '../../static/logo.png'" class="user-avatar"
  29. mode="aspectFill">
  30. </image>
  31. <!-- <view class="notification-badge"></view> -->
  32. </view>
  33. </view>
  34. <view class="current-job">
  35. <image src="../../static/images/aixin.svg" class="job-icon" mode="aspectFit"></image>
  36. <text class="job-text">{{ workExpList && workExpList.length > 0 && workExpList[0].companyName || '暂无'
  37. }}</text>
  38. <text class="job-text">{{ workExpList && workExpList.length > 0 &&
  39. workExpList[0].workExpDetailList[0].position || '暂无' }}</text>
  40. </view>
  41. <view class="availability">
  42. <text class="status-text">{{ resumesStatus[resumeList.resumesStatus] || '离职&随时到岗位' }}</text>
  43. </view>
  44. <view class="summary-info">
  45. <view class="summary-item">
  46. <text class="summary-text">{{ resumeData.resumesWorkExperience || '0' }}</text>
  47. </view>
  48. <view class="summary-item">
  49. <text class="summary-text">{{ resumeList.degree || '无' }}</text>
  50. </view>
  51. <view class="summary-item">
  52. <text class="summary-text">{{ resumeList.userAge || '无' }}岁</text>
  53. </view>
  54. </view>
  55. </view>
  56. <!-- 内容区域 -->
  57. <view class="content-section">
  58. <!-- 个人优势 -->
  59. <view class="section-item">
  60. <view class="advantage-content">
  61. {{ resumeList.adv || '暂无个人优势。(最多展示三行)' }}
  62. </view>
  63. </view>
  64. <!-- 附件简历 -->
  65. <!-- <view class="attachment-section">
  66. <view class="attachment-btn">
  67. <image src="../../static/images/fujian.svg" class="attachment-icon" mode="aspectFit"></image>
  68. <text class="attachment-text">已上传附件简历</text>
  69. </view>
  70. </view> -->
  71. <!-- 求职期望 -->
  72. <view class="expectation-card" v-if="intentions && intentions.length > 0">
  73. <view class="card-header">
  74. <text class="header-title">求职期望</text>
  75. </view>
  76. <view class="job-expectation" v-for="(item, index) in intentions" :key="item.intentionId">
  77. <view class="expectation-text">
  78. {{ item.ruleClassifyName || '无' }},{{ item.citys || '无' }}
  79. <text v-if="item.postType">({{ item.postType }})</text>
  80. </view>
  81. <text class="salary-range">
  82. {{ item.salaryRange ? item.salaryRange + '元' : '薪资未填写' }}
  83. </text>
  84. </view>
  85. </view>
  86. <!-- 如果为空 -->
  87. <view v-else class="expectation-card">
  88. <view class="card-header">
  89. <text class="header-title">求职期望</text>
  90. </view>
  91. <view class="job-expectation">
  92. <text class="expectation-text">暂无求职期望</text>
  93. </view>
  94. </view>
  95. <view class="jobRemarks-box-c-title flex align-center">
  96. <image src="/static/images/index/ins.png" class="title-icon"></image>
  97. <text>工作经历</text>
  98. </view>
  99. <!-- 工作经历 -->
  100. <view class="work-experience-section">
  101. <view class="section-header">
  102. <view class="section-title">
  103. <text class="required-title">工作经历</text>
  104. <view class="section-desc">请填写专属跨境行业的工作经验</view>
  105. </view>
  106. </view>
  107. <view class="experience-list" v-if="workExpList && workExpList.length > 0">
  108. <view class="experience-item" v-for="(item, index) in workExpList" :key="item.workExpId">
  109. <view class="company-logo">
  110. <image src="../../static/images/index/changsha.svg" class="logo-img" mode="aspectFit">
  111. </image>
  112. </view>
  113. <view class="experience-content">
  114. <!-- 公司名 -->
  115. <view class="company-title">{{ item.companyName }}</view>
  116. <!-- 遍历详细工作经历 -->
  117. <view class="job-detail" v-for="(detail, i) in item.workExpDetailList"
  118. :key="detail.workExpDetailId">
  119. <view class="job-info-row">
  120. <view class="job-title">{{ detail.position || '未填写职位' }}</view>
  121. <!-- <view class="job-department">{{ detail.department || '' }}</view> -->
  122. <view class="work-period">
  123. {{ detail.startTime ? detail.startTime.slice(0, 7) : '' }} -
  124. {{ detail.endTime ? detail.endTime.slice(0, 7) : '至今' }}
  125. </view>
  126. </view>
  127. <!-- <view class="job-description">
  128. {{ detail.workContent ? detail.workContent : '暂无工作描述' }}
  129. </view> -->
  130. <view style="margin-bottom: 10rpx;font-size: 28rpx;">工作内容</view>
  131. <view class="job-description">
  132. {{ detail.workContent || '暂无工作内容'}}
  133. </view>
  134. <view style="margin: 12rpx 0;font-size: 28rpx;">工作业绩</view>
  135. <view class="job-description">
  136. {{detail.workPerformance || '暂无工作业绩'}}
  137. </view>
  138. <view class="skill-tags" v-if="detail.skills">
  139. <view class="tag" v-for="(tag, j) in JSON.parse(detail.skills)" :key="j">
  140. {{ tag }}
  141. </view>
  142. </view>
  143. </view>
  144. </view>
  145. </view>
  146. </view>
  147. <view class="experience-list" v-else>
  148. <view class="job-info-row">
  149. <view class="job-title">暂无工作经历</view>
  150. </view>
  151. </view>
  152. </view>
  153. <!-- 教育经历 -->
  154. <view class="education-section">
  155. <view class="section-header">
  156. <view class="section-title">
  157. <text>教育经历</text>
  158. </view>
  159. </view>
  160. <view class="education-list">
  161. <view class="education-item" v-for="(item, index) in eduList" :key="index">
  162. <view class="school-logo">
  163. <image src="../../static/images/index/wuhan.svg" class="logo-img" mode="aspectFit"></image>
  164. </view>
  165. <view class="education-content">
  166. <view class="school-name">{{ item.school }}</view>
  167. <view class="degree-info">{{ item.degree }} • {{ item.profession }} •
  168. {{ item.startTime?item.startTime.slice(0, 4):'' }}-{{ item.endTime?item.endTime.slice(0, 4):'' }}
  169. </view>
  170. <view class="education-description">
  171. {{ item.detail }}
  172. </view>
  173. </view>
  174. </view>
  175. </view>
  176. </view>
  177. <!-- 资格证书 -->
  178. <view class="certificates-section">
  179. <view class="section-header">
  180. <view class="section-title">
  181. <text>专业技能</text>
  182. </view>
  183. </view>
  184. <view class="certificates-grid" v-if="skills && skills.length > 0">
  185. <view class="certificate-tag" v-for="(skll, index) in skills || {}" :key="index">
  186. {{ skll.skillName }}
  187. </view>
  188. </view>
  189. <view class="certificates-grid" v-else>
  190. <view class="certificate-tag">暂无技能</view>
  191. </view>
  192. </view>
  193. </view>
  194. <!-- 底部操作按钮 -->
  195. <view v-if="postPushId != '' && isShowBtn == 0" class="bottom-actions">
  196. <view class="action-btn contact-btn" @click="contactCandidate">
  197. <text>立即联系</text>
  198. </view>
  199. </view>
  200. </view>
  201. </template>
  202. <script>
  203. export default {
  204. data() {
  205. return {
  206. statusBarHeight: 0, // 状态栏高度
  207. resumeData: {},
  208. userEntity: "",
  209. eduList: "",
  210. intentions: "",
  211. resumeList: {},
  212. skills: "",
  213. postPushId: "",
  214. workExpList: [],
  215. workExpTimes: "",
  216. resumesStatus: ['离职&随时到岗', '在职&月内到岗', '在职&考虑机会', '在职&暂不考虑'],
  217. isShowBtn:0
  218. }
  219. },
  220. onLoad(option) {
  221. // 获取状态栏高度
  222. let systemInfo = uni.getSystemInfoSync();
  223. this.statusBarHeight = systemInfo.statusBarHeight || 0;
  224. // 获取邀请码保存到本地
  225. if (option.invitation) {
  226. this.$queue.setData('inviterCode', option.invitation);
  227. }
  228. // #ifdef MP-WEIXIN
  229. if (option.scene) {
  230. const scene = decodeURIComponent(option.scene);
  231. this.$queue.setData('inviterCode', scene.split(',')[0]);
  232. }
  233. // #endif
  234. this.weekMember = uni.getStorageSync('weekMember')
  235. this.userId = uni.getStorageSync('userId') ? uni.getStorageSync('userId') : 0
  236. if (option.postPushId) {
  237. this.postPushId = option.postPushId
  238. }
  239. if (option.resumesId) {
  240. this.resumesId = option.resumesId
  241. this.getDetail()
  242. } else if (option.userId) {
  243. this.byuserId = option.userId
  244. this.getDetail()
  245. }
  246. if(option.isShowBtn){
  247. this.isShowBtn = option.isShowBtn
  248. }
  249. },
  250. methods: {
  251. /**
  252. * 收藏简历
  253. */
  254. setCollection() {
  255. this.$Request.postT("/app/myCollection/saveCollection", {
  256. resumesId: this.resumesId,
  257. type: 2
  258. }).then(res => {
  259. if (res.code == 0) {
  260. uni.showToast({
  261. title: res.msg
  262. })
  263. this.getDetail()
  264. }
  265. })
  266. },
  267. goBack() {
  268. uni.navigateBack();
  269. },
  270. contactCandidate() {
  271. //去联系
  272. this.getDetail()
  273. this.$Request.postJson('/app/chat/insertChatConversation', {
  274. userId: this.userEntity, //会话对象的id
  275. focusedUserId: uni.getStorageSync('userId'), //当前登录者Id
  276. postPushId: this.postPushId,
  277. resumesId: this.resumesId,
  278. type: 2,
  279. }).then(ret => {
  280. if (ret.code == 0) {
  281. uni.navigateTo({
  282. url: '/pages/msg/im?byUserId=' + this.userEntity
  283. + '&chatConversationId=' + ret.data
  284. .chatConversationId + '&resumesId=' + this.resumesId + '&postPushId=' +
  285. this.postPushId
  286. })
  287. }
  288. })
  289. },
  290. getDetail() {
  291. uni.showLoading({
  292. title: '加载中'
  293. })
  294. let data = {
  295. resumesId: this.resumesId,
  296. userId: this.userId,
  297. companyId: uni.getStorageSync('companyId'),
  298. }
  299. if (this.postPushId && this.postPushId !== 'null' && this.postPushId !== 'undefined') {
  300. data = {
  301. ...data,
  302. postPushId: this.postPushId
  303. }
  304. }
  305. this.$Request.get('/app/resumes/selectResumesByResumesId', data).then(res => {
  306. if (res.code == 0) {
  307. uni.hideLoading()
  308. var data = res.data;
  309. this.resumeData = res.data;
  310. // this.userEntity = data.userEntity
  311. this.userEntity = data.userId
  312. this.eduList = data.eduList
  313. this.intentions = data.intentionList
  314. this.resumeList = data.resumesListDtoList !=null?data.resumesListDtoList : {}
  315. // this.skills = data.skills
  316. this.skills = data.skillList
  317. this.workExpList = data.workExpList
  318. } else {
  319. uni.hideLoading()
  320. uni.showModal({
  321. title: '提示',
  322. content: '用户简历不存在',
  323. showCancel: false,
  324. complete(ret) {
  325. uni.navigateBack()
  326. }
  327. })
  328. }
  329. })
  330. },
  331. //使用岗位名称查询出企业正在招聘的该岗位拿到对应的岗位id
  332. getJobList(ruleClassifyName) {
  333. let data = {
  334. status: 2,
  335. page: 1,
  336. limit: 1,
  337. ruleClassifyName: ruleClassifyName,
  338. companyId: uni.getStorageSync('companyId')
  339. }
  340. this.$Request.getT('/app/postPush/getPostPushList', data).then(res => {
  341. if (res.code == 0) {
  342. this.postPushId = res.data.records[0].postPushId
  343. }
  344. })
  345. },
  346. // 查看图片
  347. saveImg(imgs, index) {
  348. // console.log(imgs)
  349. let that = this;
  350. let imgArr = imgs
  351. // imgArr.push(imgs);
  352. // //预览图片
  353. uni.previewImage({
  354. urls: imgArr,
  355. current: imgArr[index]
  356. });
  357. },
  358. }
  359. }
  360. </script>
  361. <style lang="scss" scoped>
  362. .resume-detail {
  363. min-height: 100vh;
  364. padding-bottom: 120rpx;
  365. // padding-top 已改为动态计算,在模板中通过 :style 设置
  366. }
  367. .fixed-nav {
  368. position: fixed;
  369. top: 0;
  370. left: 0;
  371. right: 0;
  372. z-index: 9999;
  373. background-color: #ffffff;
  374. // padding: 0 4rpx;
  375. // padding-top 已改为动态计算,在模板中通过 :style 设置
  376. }
  377. // 顶部导航栏
  378. .navbar {
  379. background: #fff;
  380. height: 88rpx;
  381. padding: 0 8rpx;
  382. // padding: 80rpx 0 40rpx 0; // 已移除,因为现在是固定导航栏
  383. .navbar-content {
  384. display: flex;
  385. align-items: center;
  386. justify-content: space-between;
  387. padding: 0 30rpx;
  388. height: 60rpx;
  389. .navbar-left {
  390. width: 60rpx;
  391. height: 60rpx;
  392. display: flex;
  393. align-items: center;
  394. justify-content: center;
  395. }
  396. .navbar-title {
  397. color: rgba(23, 23, 37, 1);
  398. font-family: DM Sans;
  399. font-size: 38rpx;
  400. font-weight: 700;
  401. line-height: 52rpx;
  402. letter-spacing: 0%;
  403. text-align: center;
  404. }
  405. .nav-right {
  406. display: flex;
  407. align-items: center;
  408. justify-content: flex-end;
  409. width: 96rpx;
  410. }
  411. .nav-icon {
  412. display: flex;
  413. align-items: center;
  414. justify-content: center;
  415. // width: 36rpx;
  416. // height: 36rpx;
  417. }
  418. .icon-img {
  419. width: 42rpx;
  420. height: 42rpx;
  421. }
  422. }
  423. }
  424. // 用户信息区域
  425. .user-profile {
  426. background: #fff;
  427. padding: 30rpx;
  428. // margin: 0 32rpx;
  429. .profile-header {
  430. display: flex;
  431. justify-content: space-between;
  432. align-items: flex-start;
  433. margin-bottom: 20rpx;
  434. .name-section {
  435. flex: 1;
  436. display: flex;
  437. align-items: center;
  438. justify-content: flex-start;
  439. gap: 12rpx;
  440. .user-name {
  441. color: rgba(58, 57, 67, 1);
  442. font-family: DM Sans;
  443. font-size: 48rpx;
  444. font-weight: 700;
  445. line-height: 60rpx;
  446. letter-spacing: 0px;
  447. text-align: left;
  448. margin-right: 12rpx;
  449. }
  450. .status-tag {
  451. background: rgba(252, 233, 220, 1);
  452. color: rgba(1, 107, 246, 1);
  453. font-family: DM Sans;
  454. font-size: 18rpx;
  455. padding: 4rpx 8rpx;
  456. border-radius: 8rpx;
  457. display: inline-block;
  458. }
  459. }
  460. .avatar-container {
  461. position: relative;
  462. .user-avatar {
  463. width: 72rpx;
  464. height: 72rpx;
  465. border-radius: 50%;
  466. // border: 1px solid #0d27f7;
  467. }
  468. .notification-badge {
  469. position: absolute;
  470. top: 0;
  471. right: 0;
  472. width: 20rpx;
  473. height: 20rpx;
  474. background: #FF3B30;
  475. border-radius: 50%;
  476. border: 2rpx solid #fff;
  477. }
  478. }
  479. }
  480. .current-job {
  481. display: flex;
  482. align-items: center;
  483. gap: 8rpx;
  484. margin-bottom: 12rpx;
  485. .job-icon {
  486. width: 36rpx;
  487. height: 36rpx;
  488. }
  489. .job-text {
  490. color: rgba(156, 164, 171, 1);
  491. font-family: DM Sans;
  492. font-size: 24rpx;
  493. font-weight: 400;
  494. line-height: 40rpx;
  495. letter-spacing: 0.5%;
  496. text-align: left;
  497. }
  498. }
  499. .availability {
  500. display: flex;
  501. align-items: center;
  502. gap: 8rpx;
  503. margin-bottom: 12rpx;
  504. .status-text {
  505. color: rgba(156, 164, 171, 1);
  506. font-family: DM Sans;
  507. font-size: 24rpx;
  508. font-weight: 400;
  509. line-height: 32rpx;
  510. letter-spacing: 0%;
  511. text-align: left;
  512. }
  513. }
  514. .summary-info {
  515. display: flex;
  516. gap: 12rpx;
  517. margin-right: 12rpx;
  518. .summary-item {
  519. .summary-text {
  520. color: rgba(153, 153, 153, 1);
  521. font-family: DM Sans;
  522. font-size: 20rpx;
  523. font-weight: 400;
  524. line-height: 20rpx;
  525. letter-spacing: -0.5px;
  526. text-align: left;
  527. padding: 12rpx;
  528. border-radius: 8rpx;
  529. background: rgba(198, 198, 198, 0.1);
  530. }
  531. }
  532. }
  533. }
  534. // 内容区域
  535. .content-section {
  536. padding: 0 30rpx 30rpx 30rpx;
  537. .section-item {
  538. background: #fff;
  539. border-radius: 12rpx;
  540. padding: 30rpx 0;
  541. margin-bottom: 20rpx;
  542. box-sizing: border-box;
  543. .advantage-content {
  544. color: rgba(97, 110, 124, 1);
  545. font-family: DM Sans;
  546. font-size: 26rpx;
  547. font-weight: 400;
  548. line-height: 32rpx;
  549. letter-spacing: 0px;
  550. text-align: left;
  551. }
  552. }
  553. .attachment-section {
  554. margin-bottom: 20rpx;
  555. .attachment-btn {
  556. background: rgba(246, 246, 246, 1);
  557. border-radius: 8rpx;
  558. padding: 20rpx;
  559. display: flex;
  560. align-items: center;
  561. gap: 12rpx;
  562. .attachment-icon {
  563. width: 32rpx;
  564. height: 32rpx;
  565. }
  566. .attachment-text {
  567. color: rgba(1, 107, 246, 1);
  568. font-family: DM Sans;
  569. font-size: 24rpx;
  570. font-weight: 400;
  571. line-height: 32rpx;
  572. letter-spacing: 0px;
  573. text-align: left;
  574. }
  575. }
  576. }
  577. // 求职期望卡片样式
  578. .expectation-card {
  579. background: #ffffff;
  580. border-radius: 12rpx;
  581. padding: 30rpx 0;
  582. margin-bottom: 20rpx;
  583. box-sizing: border-box;
  584. .card-header {
  585. margin-bottom: 20rpx;
  586. .header-title {
  587. color: rgba(34, 37, 42, 1);
  588. font-family: DM Sans;
  589. font-size: 32rpx;
  590. font-weight: 400;
  591. line-height: 48rpx;
  592. letter-spacing: 0px;
  593. text-align: left;
  594. }
  595. }
  596. .job-expectation {
  597. display: flex;
  598. justify-content: space-between;
  599. align-items: center;
  600. .expectation-text {
  601. color: rgba(153, 153, 153, 1);
  602. font-family: DM Sans;
  603. font-size: 24rpx;
  604. font-weight: 500;
  605. line-height: 48rpx;
  606. letter-spacing: 0.5%;
  607. text-align: left;
  608. flex-shrink: 0;
  609. }
  610. .salary-range {
  611. color: rgba(1, 107, 246, 1);
  612. font-family: DM Sans;
  613. font-size: 32rpx;
  614. font-weight: 700;
  615. line-height: 40rpx;
  616. letter-spacing: 0.5%;
  617. text-align: right;
  618. }
  619. }
  620. }
  621. // 工作经历部分样式
  622. .work-experience-section {
  623. background: #fff;
  624. border-radius: 12px;
  625. padding: 30rpx;
  626. margin-bottom: 20rpx;
  627. box-sizing: border-box;
  628. border: 1px solid rgba(1, 107, 246, 1);
  629. .section-header {
  630. display: flex;
  631. align-items: center;
  632. justify-content: space-between;
  633. margin-bottom: 20rpx;
  634. .section-title {
  635. display: flex;
  636. align-items: center;
  637. .required-mark {
  638. color: #FF3B30;
  639. font-size: 40rpx;
  640. font-weight: 600;
  641. margin-right: 8rpx;
  642. }
  643. .required-title {
  644. font-family: DM Sans;
  645. font-size: 30rpx;
  646. font-weight: 700;
  647. line-height: 52rpx;
  648. letter-spacing: 0%;
  649. text-align: left;
  650. margin-right: 12rpx;
  651. }
  652. text {
  653. color: rgba(23, 23, 37, 1);
  654. font-family: Inter;
  655. font-size: 44rpx;
  656. font-weight: 600;
  657. line-height: 24px;
  658. }
  659. }
  660. .section-desc {
  661. color: rgba(1, 107, 246, 1);
  662. font-family: DM Sans;
  663. font-size: 24rpx;
  664. font-weight: 400;
  665. line-height: 44rpx;
  666. letter-spacing: 0%;
  667. text-align: left;
  668. }
  669. }
  670. .experience-list {
  671. .experience-item {
  672. display: flex;
  673. padding: 24rpx 0;
  674. border-bottom: 1rpx solid #F0F0F0;
  675. &:last-child {
  676. border-bottom: none;
  677. }
  678. .company-logo {
  679. width: 90rpx;
  680. height: 90rpx;
  681. margin-right: 24rpx;
  682. flex-shrink: 0;
  683. border-radius: 8px;
  684. background: rgba(246, 246, 246, 1);
  685. .logo-img {
  686. width: 100%;
  687. height: 100%;
  688. border-radius: 8rpx;
  689. }
  690. }
  691. .experience-content {
  692. flex: 1;
  693. .job-info-row {
  694. display: flex;
  695. align-items: center;
  696. margin-bottom: 4rpx;
  697. }
  698. .job-title {
  699. color: rgba(102, 102, 102, 1);
  700. font-family: DM Sans;
  701. font-size: 24rpx;
  702. font-weight: 400;
  703. line-height: 44rpx;
  704. letter-spacing: 0%;
  705. text-align: left;
  706. margin-right: 12rpx;
  707. }
  708. .job-department {
  709. color: rgba(120, 130, 138, 1);
  710. font-family: DM Sans;
  711. font-size: 24rpx;
  712. font-weight: 400;
  713. line-height: 44rpx;
  714. letter-spacing: 0%;
  715. text-align: left;
  716. }
  717. .company-period-row {
  718. display: flex;
  719. align-items: center;
  720. justify-content: flex-start;
  721. margin-bottom: 12rpx;
  722. gap: 12rpx;
  723. padding: 12rpx 0;
  724. }
  725. .company-name {
  726. color: rgba(120, 130, 138, 1);
  727. font-family: DM Sans;
  728. font-size: 24rpx;
  729. font-weight: 400;
  730. line-height: 10px;
  731. letter-spacing: 0.5%;
  732. text-align: left;
  733. }
  734. .work-period {
  735. color: rgba(120, 130, 138, 1);
  736. font-family: DM Sans;
  737. font-size: 24rpx;
  738. font-weight: 400;
  739. line-height: 10px;
  740. letter-spacing: 0.5%;
  741. text-align: left;
  742. margin-left: 12rpx;
  743. }
  744. .job-description {
  745. color: rgba(120, 130, 138, 1);
  746. font-family: DM Sans;
  747. font-size: 24rpx;
  748. font-weight: 400;
  749. line-height: 30rpx;
  750. letter-spacing: 0%;
  751. text-align: left;
  752. white-space: pre-wrap;
  753. }
  754. .skill-tags {
  755. display: flex;
  756. flex-wrap: wrap;
  757. gap: 8rpx;
  758. margin-top: 12rpx;
  759. .tag {
  760. background: rgba(153, 153, 153, 0.1);
  761. border-radius: 12rpx;
  762. padding: 6rpx 10rpx;
  763. color: rgba(102, 102, 102, 1);
  764. font-family: DM Sans;
  765. font-size: 22rpx;
  766. font-weight: 400;
  767. letter-spacing: 0%;
  768. text-align: left;
  769. }
  770. }
  771. }
  772. }
  773. }
  774. }
  775. // 教育经历部分样式
  776. .education-section {
  777. background: #fff;
  778. border-radius: 12px;
  779. padding: 30rpx;
  780. margin-bottom: 20rpx;
  781. box-sizing: border-box;
  782. border: 1px solid rgba(227, 231, 236, 1);
  783. .section-header {
  784. display: flex;
  785. align-items: center;
  786. justify-content: space-between;
  787. margin-bottom: 30rpx;
  788. .section-title {
  789. text {
  790. color: rgba(23, 23, 37, 1);
  791. font-family: Inter;
  792. font-size: 30rpx;
  793. font-weight: 600;
  794. line-height: 24px;
  795. }
  796. }
  797. }
  798. .education-list {
  799. .education-item {
  800. display: flex;
  801. padding: 24rpx 0;
  802. border-bottom: 1rpx solid #F0F0F0;
  803. &:last-child {
  804. border-bottom: none;
  805. }
  806. .school-logo {
  807. width: 90rpx;
  808. height: 90rpx;
  809. margin-right: 24rpx;
  810. flex-shrink: 0;
  811. border-radius: 8px;
  812. background: rgba(246, 246, 246, 1);
  813. .logo-img {
  814. width: 100%;
  815. height: 100%;
  816. border-radius: 8rpx;
  817. }
  818. }
  819. .education-content {
  820. flex: 1;
  821. .school-name {
  822. color: rgba(23, 23, 37, 1);
  823. font-family: DM Sans;
  824. font-size: 32rpx;
  825. font-weight: 400;
  826. line-height: 22px;
  827. letter-spacing: 0%;
  828. text-align: left;
  829. }
  830. .degree-info {
  831. color: rgba(120, 130, 138, 1);
  832. font-family: DM Sans;
  833. font-size: 26rpx;
  834. font-weight: 500;
  835. line-height: 24px;
  836. letter-spacing: 0%;
  837. text-align: left;
  838. padding: 12rpx 0;
  839. }
  840. .education-description {
  841. color: rgba(120, 130, 138, 1);
  842. font-family: DM Sans;
  843. font-size: 26rpx;
  844. font-weight: 400;
  845. line-height: 16px;
  846. letter-spacing: 0%;
  847. text-align: left;
  848. }
  849. }
  850. }
  851. }
  852. }
  853. // 资格证书部分样式
  854. .certificates-section {
  855. background: #fff;
  856. border-radius: 12px;
  857. padding: 30rpx 0;
  858. margin-bottom: 20rpx;
  859. box-sizing: border-box;
  860. .section-header {
  861. margin-bottom: 30rpx;
  862. .section-title {
  863. text {
  864. color: rgba(34, 37, 42, 1);
  865. font-family: DM Sans;
  866. font-size: 32rpx;
  867. font-weight: 400;
  868. line-height: 48rpx;
  869. letter-spacing: 0px;
  870. text-align: left;
  871. }
  872. }
  873. }
  874. .certificates-grid {
  875. display: flex;
  876. flex-wrap: wrap;
  877. gap: 12rpx;
  878. .certificate-tag {
  879. padding: 8rpx 16rpx;
  880. color: rgba(1, 107, 246, 1);
  881. font-family: DM Sans;
  882. font-size: 16rpx;
  883. font-weight: 400;
  884. line-height: 20rpx;
  885. letter-spacing: -0.5px;
  886. text-align: left;
  887. border-radius: 8rpx;
  888. background: #ebebebb5;
  889. }
  890. }
  891. }
  892. // 专业技能部分样式
  893. .skills-section {
  894. background: #fff;
  895. border-radius: 12px;
  896. padding: 30rpx 0;
  897. margin-bottom: 20rpx;
  898. box-sizing: border-box;
  899. .section-header {
  900. margin-bottom: 30rpx;
  901. .section-title {
  902. text {
  903. color: rgba(34, 37, 42, 1);
  904. font-family: DM Sans;
  905. font-size: 32rpx;
  906. font-weight: 400;
  907. line-height: 48rpx;
  908. letter-spacing: 0px;
  909. text-align: left;
  910. }
  911. }
  912. }
  913. .skills-content {
  914. color: rgba(97, 110, 124, 1);
  915. font-family: DM Sans;
  916. font-size: 24rpx;
  917. font-weight: 400;
  918. line-height: 32rpx;
  919. letter-spacing: 0px;
  920. text-align: left;
  921. }
  922. }
  923. // 工作经历标题样式
  924. .jobRemarks-box-c-title {
  925. color: rgba(1, 107, 246, 1);
  926. font-size: 32rpx;
  927. padding: 8px 12px;
  928. border-radius: 36px;
  929. font-weight: 500;
  930. background: rgba(246, 246, 246, 1);
  931. display: flex;
  932. align-items: center;
  933. margin-bottom: 20rpx;
  934. .title-icon {
  935. width: 32rpx;
  936. height: 32rpx;
  937. margin-right: 12rpx;
  938. }
  939. text {
  940. color: rgba(1, 107, 246, 1);
  941. font-family: DM Sans;
  942. font-size: 32rpx;
  943. font-weight: 500;
  944. line-height: 48rpx;
  945. letter-spacing: 0px;
  946. text-align: left;
  947. }
  948. }
  949. }
  950. // 底部操作按钮
  951. .bottom-actions {
  952. position: fixed;
  953. bottom: 0;
  954. left: 0;
  955. right: 0;
  956. background: #fff;
  957. padding: 30rpx;
  958. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
  959. .action-btn {
  960. width: 100%;
  961. height: 88rpx;
  962. border-radius: 44rpx;
  963. display: flex;
  964. align-items: center;
  965. justify-content: center;
  966. font-size: 32rpx;
  967. font-weight: 500;
  968. }
  969. .contact-btn {
  970. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  971. color: #fff;
  972. }
  973. }
  974. .company-title {
  975. margin-bottom: 8rpx;
  976. color: rgba(23, 23, 37, 1);
  977. font-family: DM Sans;
  978. font-size: 28rpx;
  979. font-weight: 400;
  980. }
  981. </style>