resumeDetail.vue 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091
  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. uni.showLoading({
  245. title: '加载中'
  246. })
  247. this.weekMember = uni.getStorageSync('weekMember')
  248. this.userId = uni.getStorageSync('userId') ? uni.getStorageSync('userId') : 0
  249. if (option.resumesId) {
  250. this.resumesId = option.resumesId
  251. this.getDetail()
  252. } else if (option.userId) {
  253. this.byuserId = option.userId
  254. this.getDetails()
  255. }
  256. // 获取邀请码保存到本地
  257. if (option.postPushId) {
  258. this.postPushId = option.postPushId
  259. }
  260. },
  261. methods: {
  262. goBack() {
  263. uni.navigateBack();
  264. },
  265. loadResumeData() {
  266. // 这里应该根据 resumeId 加载简历数据
  267. // 暂时使用默认数据
  268. console.log('加载简历数据:', this.resumeId);
  269. },
  270. contactCandidate() {
  271. //去联系
  272. this.getDetail()
  273. this.$Request.postJson('/app/chat/insertChatConversation', {
  274. userId: this.userEntity.userId,//会话对象的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. .userId + '&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. //this.$Request.get('/app/resumes/selectResumesByResumesId', data).then(res => {
  300. this.$Request.get('/app/userFirst/getResumes', data).then(res => {
  301. if (res.code == 0) {
  302. uni.hideLoading()
  303. if (res.data.status == 1) {
  304. uni.showModal({
  305. title: '提示',
  306. content: '该简历审核中,暂无法查看',
  307. showCancel: false,
  308. cancelText: '',
  309. confirmText: '去首页',
  310. confirmColor: '#016BF6',
  311. complete: (ret) => {
  312. if (ret.confirm) {
  313. uni.switchTab({
  314. url: '/pages/index/index'
  315. })
  316. }
  317. }
  318. });
  319. } else {
  320. var data = res.data;
  321. this.userEntity = data.userEntity
  322. this.eduList = data.eduList
  323. this.intentions = data.intentions
  324. this.resumeList = data.resumeList
  325. this.skills = data.skills
  326. this.workExpList = data.workExpList
  327. this.workExpTimes = data.workExpTimes
  328. this.workExps = data.workExps
  329. //this.order.industryName = this.order.industryName.split(',')
  330. //this.getJobList(res.data.resumesPost)
  331. }
  332. } else {
  333. uni.hideLoading()
  334. uni.showModal({
  335. title: '提示',
  336. content: '用户简历不存在',
  337. showCancel: false,
  338. complete(ret) {
  339. uni.navigateBack()
  340. }
  341. })
  342. }
  343. })
  344. },
  345. //使用岗位名称查询出企业正在招聘的该岗位拿到对应的岗位id
  346. getJobList(ruleClassifyName) {
  347. let data = {
  348. status: 2,
  349. page: 1,
  350. limit: 1,
  351. ruleClassifyName: ruleClassifyName,
  352. companyId: uni.getStorageSync('companyId')
  353. }
  354. this.$Request.getT('/app/postPush/getPostPushList', data).then(res => {
  355. if (res.code == 0) {
  356. this.postPushId = res.data.records[0].postPushId
  357. }
  358. })
  359. },
  360. // 查看图片
  361. saveImg(imgs, index) {
  362. // console.log(imgs)
  363. let that = this;
  364. let imgArr = imgs
  365. // imgArr.push(imgs);
  366. // //预览图片
  367. uni.previewImage({
  368. urls: imgArr,
  369. current: imgArr[index]
  370. });
  371. },
  372. }
  373. }
  374. </script>
  375. <style lang="scss" scoped>
  376. .resume-detail {
  377. min-height: 100vh;
  378. padding-bottom: 120rpx;
  379. // padding-top 已改为动态计算,在模板中通过 :style 设置
  380. }
  381. .fixed-nav {
  382. position: fixed;
  383. top: 0;
  384. left: 0;
  385. right: 0;
  386. z-index: 9999;
  387. background-color: #ffffff;
  388. // padding: 0 4rpx;
  389. // padding-top 已改为动态计算,在模板中通过 :style 设置
  390. }
  391. // 顶部导航栏
  392. .navbar {
  393. background: #fff;
  394. height: 88rpx;
  395. padding: 0 8rpx;
  396. // padding: 80rpx 0 40rpx 0; // 已移除,因为现在是固定导航栏
  397. .navbar-content {
  398. display: flex;
  399. align-items: center;
  400. justify-content: space-between;
  401. padding: 0 30rpx;
  402. height: 60rpx;
  403. .navbar-left {
  404. width: 60rpx;
  405. height: 60rpx;
  406. display: flex;
  407. align-items: center;
  408. justify-content: center;
  409. }
  410. .navbar-title {
  411. color: rgba(23, 23, 37, 1);
  412. font-family: DM Sans;
  413. font-size: 38rpx;
  414. font-weight: 700;
  415. line-height: 52rpx;
  416. letter-spacing: 0%;
  417. text-align: center;
  418. }
  419. .navbar-right {
  420. width: 60rpx;
  421. height: 60rpx;
  422. }
  423. }
  424. }
  425. // 用户信息区域
  426. .user-profile {
  427. background: #fff;
  428. padding: 30rpx;
  429. // margin: 0 32rpx;
  430. .profile-header {
  431. display: flex;
  432. justify-content: space-between;
  433. align-items: flex-start;
  434. margin-bottom: 20rpx;
  435. .name-section {
  436. flex: 1;
  437. display: flex;
  438. align-items: center;
  439. justify-content: flex-start;
  440. gap: 12rpx;
  441. .user-name {
  442. color: rgba(58, 57, 67, 1);
  443. font-family: DM Sans;
  444. font-size: 48rpx;
  445. font-weight: 700;
  446. line-height: 60rpx;
  447. letter-spacing: 0px;
  448. text-align: left;
  449. margin-right: 12rpx;
  450. }
  451. .status-tag {
  452. background: rgba(252, 233, 220, 1);
  453. color: rgba(1, 107, 246, 1);
  454. font-family: DM Sans;
  455. font-size: 18rpx;
  456. padding: 4rpx 8rpx;
  457. border-radius: 8rpx;
  458. display: inline-block;
  459. }
  460. }
  461. .avatar-container {
  462. position: relative;
  463. .user-avatar {
  464. width: 72rpx;
  465. height: 72rpx;
  466. border-radius: 50%;
  467. border: 1px solid #0d27f7;
  468. }
  469. .notification-badge {
  470. position: absolute;
  471. top: 0;
  472. right: 0;
  473. width: 20rpx;
  474. height: 20rpx;
  475. background: #FF3B30;
  476. border-radius: 50%;
  477. border: 2rpx solid #fff;
  478. }
  479. }
  480. }
  481. .current-job {
  482. display: flex;
  483. align-items: center;
  484. gap: 8rpx;
  485. margin-bottom: 12rpx;
  486. .job-icon {
  487. width: 36rpx;
  488. height: 36rpx;
  489. }
  490. .job-text {
  491. color: rgba(156, 164, 171, 1);
  492. font-family: DM Sans;
  493. font-size: 24rpx;
  494. font-weight: 400;
  495. line-height: 40rpx;
  496. letter-spacing: 0.5%;
  497. text-align: left;
  498. }
  499. }
  500. .availability {
  501. display: flex;
  502. align-items: center;
  503. gap: 8rpx;
  504. margin-bottom: 12rpx;
  505. .status-text {
  506. color: rgba(156, 164, 171, 1);
  507. font-family: DM Sans;
  508. font-size: 24rpx;
  509. font-weight: 400;
  510. line-height: 32rpx;
  511. letter-spacing: 0%;
  512. text-align: left;
  513. }
  514. }
  515. .summary-info {
  516. display: flex;
  517. gap: 12rpx;
  518. margin-right: 12rpx;
  519. .summary-item {
  520. .summary-text {
  521. color: rgba(153, 153, 153, 1);
  522. font-family: DM Sans;
  523. font-size: 20rpx;
  524. font-weight: 400;
  525. line-height: 20rpx;
  526. letter-spacing: -0.5px;
  527. text-align: left;
  528. padding: 12rpx;
  529. border-radius: 8rpx;
  530. background: rgba(198, 198, 198, 0.1);
  531. }
  532. }
  533. }
  534. }
  535. // 内容区域
  536. .content-section {
  537. padding: 0 30rpx 30rpx 30rpx;
  538. .section-item {
  539. background: #fff;
  540. border-radius: 12rpx;
  541. padding: 30rpx 0;
  542. margin-bottom: 20rpx;
  543. box-sizing: border-box;
  544. .advantage-content {
  545. color: rgba(97, 110, 124, 1);
  546. font-family: DM Sans;
  547. font-size: 26rpx;
  548. font-weight: 400;
  549. line-height: 32rpx;
  550. letter-spacing: 0px;
  551. text-align: left;
  552. }
  553. }
  554. .attachment-section {
  555. margin-bottom: 20rpx;
  556. .attachment-btn {
  557. background: rgba(246, 246, 246, 1);
  558. border-radius: 8rpx;
  559. padding: 20rpx;
  560. display: flex;
  561. align-items: center;
  562. gap: 12rpx;
  563. .attachment-icon {
  564. width: 32rpx;
  565. height: 32rpx;
  566. }
  567. .attachment-text {
  568. color: rgba(1, 107, 246, 1);
  569. font-family: DM Sans;
  570. font-size: 24rpx;
  571. font-weight: 400;
  572. line-height: 32rpx;
  573. letter-spacing: 0px;
  574. text-align: left;
  575. }
  576. }
  577. }
  578. // 求职期望卡片样式
  579. .expectation-card {
  580. background: #ffffff;
  581. border-radius: 12rpx;
  582. padding: 30rpx 0;
  583. margin-bottom: 20rpx;
  584. box-sizing: border-box;
  585. .card-header {
  586. margin-bottom: 20rpx;
  587. .header-title {
  588. color: rgba(34, 37, 42, 1);
  589. font-family: DM Sans;
  590. font-size: 32rpx;
  591. font-weight: 400;
  592. line-height: 48rpx;
  593. letter-spacing: 0px;
  594. text-align: left;
  595. }
  596. }
  597. .job-expectation {
  598. display: flex;
  599. justify-content: space-between;
  600. align-items: center;
  601. .expectation-text {
  602. color: rgba(153, 153, 153, 1);
  603. font-family: DM Sans;
  604. font-size: 24rpx;
  605. font-weight: 500;
  606. line-height: 48rpx;
  607. letter-spacing: 0.5%;
  608. text-align: left;
  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: 30rpx;
  634. .section-title {
  635. display: flex;
  636. align-items: center;
  637. .required-mark {
  638. color: #FF3B30;
  639. font-size: 18px;
  640. font-weight: 600;
  641. margin-right: 8rpx;
  642. }
  643. .required-title {
  644. font-family: DM Sans;
  645. font-size: 28rpx;
  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: 20px;
  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: 20rpx;
  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(23, 23, 37, 1);
  700. font-family: DM Sans;
  701. font-size: 28rpx;
  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: 20rpx;
  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: 20rpx;
  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: 20rpx;
  738. font-weight: 400;
  739. line-height: 10px;
  740. letter-spacing: 0.5%;
  741. text-align: left;
  742. }
  743. .job-description {
  744. color: rgba(120, 130, 138, 1);
  745. font-family: DM Sans;
  746. font-size: 16rpx;
  747. font-weight: 400;
  748. line-height: 24rpx;
  749. letter-spacing: 0%;
  750. text-align: left;
  751. }
  752. .skill-tags {
  753. display: flex;
  754. flex-wrap: wrap;
  755. gap: 8rpx;
  756. margin-top: 12rpx;
  757. .tag {
  758. background: rgba(153, 153, 153, 0.1);
  759. border-radius: 12rpx;
  760. padding: 6rpx;
  761. color: rgba(102, 102, 102, 1);
  762. font-family: DM Sans;
  763. font-size: 16rpx;
  764. font-weight: 400;
  765. letter-spacing: 0%;
  766. text-align: left;
  767. }
  768. }
  769. }
  770. }
  771. }
  772. }
  773. // 教育经历部分样式
  774. .education-section {
  775. background: #fff;
  776. border-radius: 12px;
  777. padding: 30rpx;
  778. margin-bottom: 20rpx;
  779. box-sizing: border-box;
  780. border: 1px solid rgba(227, 231, 236, 1);
  781. .section-header {
  782. display: flex;
  783. align-items: center;
  784. justify-content: space-between;
  785. margin-bottom: 30rpx;
  786. .section-title {
  787. text {
  788. color: rgba(23, 23, 37, 1);
  789. font-family: Inter;
  790. font-size: 20px;
  791. font-weight: 600;
  792. line-height: 24px;
  793. }
  794. }
  795. }
  796. .education-list {
  797. .education-item {
  798. display: flex;
  799. padding: 24rpx 0;
  800. border-bottom: 1rpx solid #F0F0F0;
  801. &:last-child {
  802. border-bottom: none;
  803. }
  804. .school-logo {
  805. width: 90rpx;
  806. height: 90rpx;
  807. margin-right: 24rpx;
  808. flex-shrink: 0;
  809. border-radius: 8px;
  810. background: rgba(246, 246, 246, 1);
  811. .logo-img {
  812. width: 100%;
  813. height: 100%;
  814. border-radius: 8rpx;
  815. }
  816. }
  817. .education-content {
  818. flex: 1;
  819. .school-name {
  820. color: rgba(23, 23, 37, 1);
  821. font-family: DM Sans;
  822. font-size: 18px;
  823. font-weight: 400;
  824. line-height: 22px;
  825. letter-spacing: 0%;
  826. text-align: left;
  827. }
  828. .degree-info {
  829. color: rgba(120, 130, 138, 1);
  830. font-family: DM Sans;
  831. font-size: 20rpx;
  832. font-weight: 500;
  833. line-height: 24px;
  834. letter-spacing: 0%;
  835. text-align: left;
  836. padding: 12rpx 0;
  837. }
  838. .education-description {
  839. color: rgba(120, 130, 138, 1);
  840. font-family: DM Sans;
  841. font-size: 20rpx;
  842. font-weight: 400;
  843. line-height: 16px;
  844. letter-spacing: 0%;
  845. text-align: left;
  846. }
  847. }
  848. }
  849. }
  850. }
  851. // 资格证书部分样式
  852. .certificates-section {
  853. background: #fff;
  854. border-radius: 12px;
  855. padding: 30rpx 0;
  856. margin-bottom: 20rpx;
  857. box-sizing: border-box;
  858. .section-header {
  859. margin-bottom: 30rpx;
  860. .section-title {
  861. text {
  862. color: rgba(34, 37, 42, 1);
  863. font-family: DM Sans;
  864. font-size: 32rpx;
  865. font-weight: 400;
  866. line-height: 48rpx;
  867. letter-spacing: 0px;
  868. text-align: left;
  869. }
  870. }
  871. }
  872. .certificates-grid {
  873. display: flex;
  874. flex-wrap: wrap;
  875. gap: 12rpx;
  876. .certificate-tag {
  877. padding: 8rpx 16rpx;
  878. color: rgba(1, 107, 246, 1);
  879. font-family: DM Sans;
  880. font-size: 16rpx;
  881. font-weight: 400;
  882. line-height: 20rpx;
  883. letter-spacing: -0.5px;
  884. text-align: left;
  885. border-radius: 8rpx;
  886. background: #ebebebb5;
  887. }
  888. }
  889. }
  890. // 专业技能部分样式
  891. .skills-section {
  892. background: #fff;
  893. border-radius: 12px;
  894. padding: 30rpx 0;
  895. margin-bottom: 20rpx;
  896. box-sizing: border-box;
  897. .section-header {
  898. margin-bottom: 30rpx;
  899. .section-title {
  900. text {
  901. color: rgba(34, 37, 42, 1);
  902. font-family: DM Sans;
  903. font-size: 32rpx;
  904. font-weight: 400;
  905. line-height: 48rpx;
  906. letter-spacing: 0px;
  907. text-align: left;
  908. }
  909. }
  910. }
  911. .skills-content {
  912. color: rgba(97, 110, 124, 1);
  913. font-family: DM Sans;
  914. font-size: 24rpx;
  915. font-weight: 400;
  916. line-height: 32rpx;
  917. letter-spacing: 0px;
  918. text-align: left;
  919. }
  920. }
  921. // 工作经历标题样式
  922. .jobRemarks-box-c-title {
  923. color: rgba(1, 107, 246, 1);
  924. font-size: 32rpx;
  925. padding: 8px 12px;
  926. border-radius: 36px;
  927. font-weight: 500;
  928. background: rgba(246, 246, 246, 1);
  929. display: flex;
  930. align-items: center;
  931. margin-bottom: 20rpx;
  932. .title-icon {
  933. width: 32rpx;
  934. height: 32rpx;
  935. margin-right: 12rpx;
  936. }
  937. text {
  938. color: rgba(1, 107, 246, 1);
  939. font-family: DM Sans;
  940. font-size: 32rpx;
  941. font-weight: 500;
  942. line-height: 48rpx;
  943. letter-spacing: 0px;
  944. text-align: left;
  945. }
  946. }
  947. }
  948. // 底部操作按钮
  949. .bottom-actions {
  950. position: fixed;
  951. bottom: 0;
  952. left: 0;
  953. right: 0;
  954. background: #fff;
  955. padding: 30rpx;
  956. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
  957. .action-btn {
  958. width: 100%;
  959. height: 88rpx;
  960. border-radius: 44rpx;
  961. display: flex;
  962. align-items: center;
  963. justify-content: center;
  964. font-size: 32rpx;
  965. font-weight: 500;
  966. }
  967. .contact-btn {
  968. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  969. color: #fff;
  970. }
  971. }
  972. </style>