resumeDetail.vue 24 KB

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