communicationRecords.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861
  1. <template>
  2. <view class="page">
  3. <!-- Custom Navbar -->
  4. <view class="custom-navbar">
  5. <view class="navbar-content">
  6. <view class="navbar-left" @click="goBack">
  7. <u-icon name="arrow-leftward" color="color: rgba(51, 51, 51, 1);" size="36"></u-icon>
  8. </view>
  9. <view class="navbar-title">沟通记录</view>
  10. <view class="navbar-right"></view>
  11. </view>
  12. </view>
  13. <view class="tab-section-bg">
  14. <text class="title-text">沟通记录</text>
  15. <text class="interview-manage" @click="goToInterviewManage">面试管理</text>
  16. </view>
  17. <!-- Tab Navigation -->
  18. <view class="tab-section">
  19. <u-tabs
  20. :list="tabs"
  21. :current="activeTab"
  22. @change="switchTab"
  23. :is-scroll="false"
  24. :height="88"
  25. :font-size="24"
  26. active-color="rgba(1, 107, 246, 1)"
  27. inactive-color="rgba(102, 102, 102, 1)"
  28. :bar-width="80"
  29. :bar-height="4"
  30. :gutter="40"
  31. bg-color="#ffffff"
  32. :bar-style="{
  33. borderRadius: '2rpx'
  34. }"
  35. ></u-tabs>
  36. </view>
  37. <!-- Content Section -->
  38. <view class="content-section">
  39. <!-- Communication Records List -->
  40. <view class="communication-list" v-if="activeTab === 0">
  41. <!-- 有数据时显示列表 -->
  42. <view v-if="communicationRecords.length > 0">
  43. <!-- Date Group -->
  44. <view class="date-group" v-for="(group, groupIndex) in groupedRecords" :key="groupIndex">
  45. <view class="date-header">
  46. <text class="date-text">{{ group.date }}</text>
  47. </view>
  48. <!-- Records for this date -->
  49. <view
  50. class="talent-card"
  51. v-for="(record, recordIndex) in group.records"
  52. :key="recordIndex"
  53. @click="goToResumeDetail(record)"
  54. >
  55. <view class="talent-content">
  56. <!-- 头像和基本信息 -->
  57. <view class="talent-header">
  58. <image :src="record.avatar" class="talent-avatar" mode="aspectFill"></image>
  59. <view class="talent-info">
  60. <view class="talent-name-section">
  61. <view class="talent-name">{{ record.name }}</view>
  62. <view class="talent-tags">
  63. <view class="status-tag online" v-if="record.isOnline">在线</view>
  64. <view class="status-tag hot" v-if="record.isHot">热门搜索</view>
  65. <view class="status-tag active" v-if="record.lastActive">{{ record.lastActive }}</view>
  66. </view>
  67. </view>
  68. <!-- 经验和薪资 -->
  69. <view class="talent-experience">
  70. <text class="experience-text">{{ record.experience }}</text>
  71. <text class="education-salary">{{ record.education }} {{ record.salary }}</text>
  72. <text class="status-text">{{ record.jobStatus }}</text>
  73. </view>
  74. </view>
  75. </view>
  76. <!-- 当前职位 -->
  77. <view class="current-job" v-if="record.currentJob">
  78. <image src="../../static/images/aixin.svg" class="job-icon" mode="aspectFit"></image>
  79. <text class="job-text">{{ record.currentJob }}</text>
  80. <text class="work-period">{{ record.workPeriod }}</text>
  81. </view>
  82. <!-- 求职期望 -->
  83. <view class="job-expectation">
  84. <image src="../../static/images/xiangzi.svg" class="job-icon" mode="aspectFit"></image>
  85. <text class="expectation-text">求职期望: {{ record.jobExpectation }}</text>
  86. </view>
  87. <!-- 技能标签 -->
  88. <view class="skill-tags">
  89. <view
  90. class="skill-tag"
  91. v-for="(skill, skillIndex) in record.skills"
  92. :key="skillIndex"
  93. >
  94. {{ skill }}
  95. </view>
  96. </view>
  97. <!-- 工作描述 -->
  98. <view class="job-description">
  99. <text class="description-text">{{ record.description }}</text>
  100. </view>
  101. </view>
  102. </view>
  103. </view>
  104. </view>
  105. <!-- 空状态显示 -->
  106. <view class="empty-state" v-else>
  107. <view class="empty-illustration">
  108. <image src="../../static/images/index/Hrempty.svg" class="empty-image" mode="aspectFit" />
  109. </view>
  110. </view>
  111. </view>
  112. <!-- Interview Records List -->
  113. <view class="interview-list" v-if="activeTab === 1">
  114. <!-- Date Selector -->
  115. <view class="date-selector">
  116. <view class="week-days">
  117. <text class="day-name" v-for="day in currentWeekDays" :key="day.name">{{ day.name }}</text>
  118. </view>
  119. <view class="week-dates">
  120. <view
  121. class="date-item"
  122. :class="{ active: date.isSelected }"
  123. v-for="date in currentWeekDates"
  124. :key="date.value"
  125. @click="selectDate(date)"
  126. >
  127. <text class="date-value">{{ date.value }}</text>
  128. </view>
  129. </view>
  130. </view>
  131. <!-- Interview Records -->
  132. <view class="interview-records">
  133. <!-- 有数据时显示列表 -->
  134. <view v-if="interviewRecords.length > 0">
  135. <view
  136. class="interview-record"
  137. :class="{ 'today': record.isToday, 'tomorrow': record.isTomorrow }"
  138. v-for="(record, index) in interviewRecords"
  139. :key="index"
  140. @click="goToInterviewDetail(record)"
  141. >
  142. <view class="record-content">
  143. <view class="record-left">
  144. <text class="date-label">{{ record.dateLabel }}</text>
  145. <text class="time-label">{{ record.time }}</text>
  146. </view>
  147. <view class="record-divider"></view>
  148. <view class="record-right">
  149. <text class="candidate-name">{{ record.candidateName }}</text>
  150. <text class="candidate-details">{{ record.experience }} {{ record.education }} {{ record.salary }}</text>
  151. </view>
  152. </view>
  153. </view>
  154. </view>
  155. <!-- 空状态显示 -->
  156. <view class="empty-state" v-else>
  157. <view class="empty-illustration">
  158. <image src="../../static/images/index/Hrempty.svg" class="empty-image" mode="aspectFit" />
  159. </view>
  160. </view>
  161. </view>
  162. </view>
  163. <!-- 收藏标签页 -->
  164. <view class="favorite-list" v-if="activeTab === 2">
  165. <!-- 有数据时显示列表 -->
  166. <view v-if="favoriteRecords.length > 0">
  167. <!-- 收藏记录列表内容 -->
  168. </view>
  169. <!-- 空状态显示 -->
  170. <view class="empty-state" v-else>
  171. <view class="empty-illustration">
  172. <image src="../../static/images/index/Hrempty.svg" class="empty-image" mode="aspectFit" />
  173. </view>
  174. </view>
  175. </view>
  176. <!-- 收藏职位标签页 -->
  177. <view class="favorite-jobs-list" v-if="activeTab === 3">
  178. <!-- 有数据时显示列表 -->
  179. <view v-if="favoriteJobs.length > 0">
  180. <!-- 收藏职位列表内容 -->
  181. </view>
  182. <!-- 空状态显示 -->
  183. <view class="empty-state" v-else>
  184. <view class="empty-illustration">
  185. <image src="../../static/images/index/Hrempty.svg" class="empty-image" mode="aspectFit" />
  186. </view>
  187. </view>
  188. </view>
  189. </view>
  190. </view>
  191. </template>
  192. <script>
  193. export default {
  194. data() {
  195. return {
  196. statusBarHeight: 0,
  197. activeTab: 0,
  198. tabs: [
  199. { name: '沟通过' },
  200. { name: '面试' },
  201. { name: '收藏' },
  202. { name: '收藏职位' }
  203. ],
  204. communicationRecords: [
  205. {
  206. id: 1,
  207. name: '刘先生',
  208. avatar: '../../static/images/avator.png',
  209. isOnline: true,
  210. isHot: true,
  211. experience: '8年',
  212. education: '本科',
  213. salary: '10-15K',
  214. jobStatus: '在职&考虑机会',
  215. currentJob: '通拓集团·店铺运营',
  216. jobExpectation: '亚马逊运营',
  217. skills: ['精品', '铺货', 'TikTok', '平台运营', '投放策略', '3C数码'],
  218. description: '负责Amazon英国、欧洲站、制定推广与销售计划,达成团队要求的销售业绩;做好数据的统计分析工作,收集、分析...',
  219. workPeriod: '1年10个月',
  220. date: '07-24'
  221. },
  222. {
  223. id: 2,
  224. name: '刘先生',
  225. avatar: '../../static/images/avator.png',
  226. isOnline: true,
  227. isHot: true,
  228. experience: '8年',
  229. education: '本科',
  230. salary: '10-15K',
  231. jobStatus: '在职&考虑机会',
  232. currentJob: '通拓集团·店铺运营',
  233. jobExpectation: '亚马逊运营',
  234. skills: ['精品', '铺货', 'TikTok', '平台运营', '投放策略', '3C数码'],
  235. description: '负责Amazon英国、欧洲站、制定推广与销售计划,达成团队要求的销售业绩;做好数据的统计分析工作,收集、分析...',
  236. workPeriod: '1年10个月',
  237. date: '07-25'
  238. }
  239. ],
  240. // 面试相关数据
  241. selectedDate: null, // 当前选中的日期
  242. // 收藏相关数据
  243. favoriteRecords: [], // 收藏记录(空数组,显示空状态)
  244. favoriteJobs: [], // 收藏职位(空数组,显示空状态)
  245. interviewRecords: [
  246. {
  247. dateLabel: '今天',
  248. time: '20:40',
  249. candidateName: '刘先生',
  250. experience: '8年',
  251. education: '本科',
  252. salary: '10-15K',
  253. isToday: true,
  254. isTomorrow: false
  255. },
  256. {
  257. dateLabel: '明天',
  258. time: '20:40',
  259. candidateName: '刘先生',
  260. experience: '8年',
  261. education: '本科',
  262. salary: '10-15K',
  263. isToday: false,
  264. isTomorrow: true
  265. },
  266. {
  267. dateLabel: '8月15日',
  268. time: '20:40',
  269. candidateName: '刘先生',
  270. experience: '8年',
  271. education: '本科',
  272. salary: '10-15K',
  273. isToday: false,
  274. isTomorrow: false
  275. }
  276. ]
  277. }
  278. },
  279. computed: {
  280. groupedRecords() {
  281. const groups = {}
  282. this.communicationRecords.forEach(record => {
  283. if (!groups[record.date]) {
  284. groups[record.date] = {
  285. date: record.date,
  286. records: []
  287. }
  288. }
  289. groups[record.date].records.push(record)
  290. })
  291. return Object.values(groups)
  292. },
  293. // 当前周的星期名称
  294. currentWeekDays() {
  295. const weekDays = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
  296. return weekDays.map(name => ({ name }))
  297. },
  298. // 当前周的日期
  299. currentWeekDates() {
  300. const today = new Date()
  301. const currentDay = today.getDay() // 0-6,0是周日
  302. // 获取本周一的日期(周一开始)
  303. const monday = new Date(today)
  304. // 如果今天是周日(0),则往前推6天到周一
  305. // 如果今天是周一(1),则往前推0天
  306. // 如果今天是周二(2),则往前推1天
  307. const daysToMonday = currentDay === 0 ? 6 : currentDay - 1
  308. monday.setDate(today.getDate() - daysToMonday)
  309. // 生成本周7天的日期
  310. const weekDates = []
  311. for (let i = 0; i < 7; i++) {
  312. const date = new Date(monday)
  313. date.setDate(monday.getDate() + i)
  314. const isToday = date.toDateString() === today.toDateString()
  315. const isSelected = this.selectedDate ?
  316. date.toDateString() === this.selectedDate.toDateString() : isToday
  317. weekDates.push({
  318. value: date.getDate().toString(),
  319. date: date,
  320. isSelected: isSelected
  321. })
  322. }
  323. return weekDates
  324. }
  325. },
  326. onLoad() {
  327. const systemInfo = uni.getSystemInfoSync()
  328. this.statusBarHeight = systemInfo.statusBarHeight || 0
  329. },
  330. methods: {
  331. goBack() {
  332. uni.navigateBack()
  333. },
  334. switchTab(index) {
  335. this.activeTab = index
  336. },
  337. goToResumeDetail(record) {
  338. console.log('查看简历详情:', record)
  339. uni.navigateTo({
  340. url: `/pages/talentSearch/resumeDetail?resumeId=${record.id}`
  341. })
  342. },
  343. selectDate(date) {
  344. // 选中当前点击的日期
  345. this.selectedDate = date.date
  346. console.log('选中日期:', date.date)
  347. },
  348. goToInterviewDetail(record) {
  349. console.log('查看面试详情:', record)
  350. // uni.navigateTo({
  351. // url: `/pages/interview/detail?id=${record.id}`
  352. // })
  353. },
  354. goToInterviewManage() {
  355. console.log('跳转到面试管理')
  356. uni.navigateTo({
  357. url: '/pages/recruitmentData/interviewManage'
  358. })
  359. }
  360. }
  361. }
  362. </script>
  363. <style lang="scss" scoped>
  364. .page {
  365. height: 100vh;
  366. overflow: hidden;
  367. }
  368. .tab-section-bg {
  369. position: fixed;
  370. top: 150rpx;
  371. left: 0;
  372. right: 0;
  373. z-index: 1000;
  374. background-color: #ffffff;
  375. padding: 32rpx;
  376. display: flex;
  377. justify-content: space-between;
  378. align-items: center;
  379. .title-text {
  380. color: rgba(51, 51, 51, 1);
  381. font-family: DM Sans;
  382. font-size: 48rpx;
  383. font-weight: 700;
  384. line-height: 60rpx;
  385. letter-spacing: 0px;
  386. }
  387. .interview-manage {
  388. color: rgba(1, 107, 246, 1);
  389. font-family: DM Sans;
  390. font-size: 28rpx;
  391. font-weight: 400;
  392. line-height: 60rpx;
  393. letter-spacing: 0px;
  394. text-align: left;
  395. }
  396. }
  397. /* Custom Navbar */
  398. .custom-navbar {
  399. position: fixed;
  400. top: 0;
  401. left: 0;
  402. right: 0;
  403. z-index: 1000;
  404. background-color: #ffffff;
  405. padding-top: 80rpx;
  406. }
  407. .navbar-content {
  408. display: flex;
  409. align-items: center;
  410. justify-content: space-between;
  411. height: 44px;
  412. padding: 20rpx;
  413. }
  414. .navbar-left {
  415. width: 44px;
  416. height: 44px;
  417. display: flex;
  418. align-items: center;
  419. justify-content: center;
  420. }
  421. .navbar-title {
  422. color: rgba(51, 51, 51, 1);
  423. font-family: DM Sans;
  424. font-size: 30rpx;
  425. font-weight: 700;
  426. line-height: 52rpx;
  427. letter-spacing: 0.5%;
  428. text-align: center;
  429. }
  430. .navbar-right {
  431. width: 44px;
  432. }
  433. /* Tab Section */
  434. .tab-section {
  435. position: fixed;
  436. top: 250rpx;
  437. left: 0;
  438. right: 0;
  439. background: white;
  440. z-index: 99;
  441. }
  442. /* Content Section */
  443. .content-section {
  444. margin-top: 330rpx;
  445. padding: 20rpx;
  446. height: calc(100vh - 330rpx) !important;
  447. overflow-y: auto;
  448. }
  449. /* Date Group */
  450. .date-group {
  451. margin-bottom: 20rpx;
  452. }
  453. .date-header {
  454. margin-bottom: 16rpx;
  455. }
  456. .date-text {
  457. color: rgba(153, 153, 153, 1);
  458. font-family: DM Sans;
  459. font-size: 24rpx;
  460. font-weight: 400;
  461. line-height: 32rpx;
  462. margin-left: 32rpx;
  463. }
  464. /* Talent Card */
  465. .talent-card {
  466. background-color: #ffffff;
  467. border-radius: 16rpx;
  468. margin-bottom: 20rpx;
  469. padding: 30rpx;
  470. // box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
  471. }
  472. .talent-content {
  473. .talent-header {
  474. display: flex;
  475. align-items: flex-start;
  476. .talent-avatar {
  477. width: 80rpx;
  478. height: 80rpx;
  479. border-radius: 50%;
  480. margin-right: 20rpx;
  481. }
  482. .talent-info {
  483. flex: 1;
  484. .talent-name-section {
  485. display: flex;
  486. align-items: center;
  487. justify-content: flex-start;
  488. width: 100%;
  489. margin-bottom: 6rpx;
  490. }
  491. .talent-name {
  492. color: rgba(51, 51, 51, 1);
  493. font-family: DM Sans;
  494. font-size: 28rpx;
  495. font-weight: 500;
  496. line-height: 36rpx;
  497. letter-spacing: 0.5%;
  498. text-align: left;
  499. margin-right: 16rpx;
  500. }
  501. .talent-tags {
  502. display: flex;
  503. flex-wrap: wrap;
  504. gap: 10rpx;
  505. .status-tag {
  506. padding: 8rpx;
  507. border-radius: 12rpx;
  508. font-size: 18rpx;
  509. font-family: DM Sans;
  510. font-weight: 400;
  511. line-height: 20rpx;
  512. letter-spacing: -0.5px;
  513. text-align: left;
  514. &.online {
  515. background: rgba(213, 255, 231, 1);
  516. color: rgba(29, 209, 104, 1);
  517. }
  518. &.hot {
  519. background: rgba(252, 233, 220, 1);
  520. color: rgba(1, 107, 246, 1);
  521. }
  522. &.active {
  523. color: rgba(153, 153, 153, 1);
  524. }
  525. }
  526. }
  527. }
  528. }
  529. .talent-experience {
  530. display: flex;
  531. align-items: center;
  532. margin-bottom: 12rpx;
  533. gap: 16rpx;
  534. color: rgba(156, 164, 171, 1);
  535. font-family: DM Sans;
  536. font-size: 24rpx;
  537. font-weight: 400;
  538. line-height: 32rpx;
  539. letter-spacing: 0.5%;
  540. text-align: left;
  541. }
  542. .current-job {
  543. display: flex;
  544. align-items: center;
  545. margin-bottom: 12rpx;
  546. .job-icon {
  547. width: 40rpx;
  548. height: 40rpx;
  549. margin-right: 8rpx;
  550. }
  551. .job-text {
  552. color: rgba(156, 164, 171, 1);
  553. font-family: DM Sans;
  554. font-size: 24rpx;
  555. font-weight: 400;
  556. line-height: 40rpx;
  557. letter-spacing: 0.5%;
  558. text-align: left;
  559. flex: 1;
  560. }
  561. .work-period {
  562. color: rgba(153, 153, 153, 1);
  563. font-family: DM Sans;
  564. font-size: 22rpx;
  565. font-weight: 400;
  566. line-height: 28rpx;
  567. }
  568. }
  569. .job-expectation {
  570. display: flex;
  571. align-items: center;
  572. margin-bottom: 16rpx;
  573. .job-icon {
  574. width: 40rpx;
  575. height: 40rpx;
  576. margin-right: 8rpx;
  577. }
  578. .expectation-text {
  579. color: rgba(156, 164, 171, 1);
  580. font-family: DM Sans;
  581. font-size: 24rpx;
  582. font-weight: 400;
  583. line-height: 40rpx;
  584. letter-spacing: 0.5%;
  585. text-align: left;
  586. }
  587. }
  588. .skill-tags {
  589. display: flex;
  590. flex-wrap: wrap;
  591. gap: 10rpx;
  592. margin-bottom: 16rpx;
  593. .skill-tag {
  594. padding: 8rpx;
  595. background: rgba(198, 198, 198, 0.1);
  596. border-radius: 12rpx;
  597. color: rgba(153, 153, 153, 1);
  598. font-family: DM Sans;
  599. font-size: 20rpx;
  600. font-weight: 400;
  601. line-height: 20rpx;
  602. letter-spacing: -0.5px;
  603. text-align: left;
  604. }
  605. }
  606. .job-description {
  607. margin-bottom: 12rpx;
  608. .description-text {
  609. color: rgba(97, 110, 124, 1);
  610. font-family: DM Sans;
  611. font-size: 24rpx;
  612. font-weight: 400;
  613. line-height: 32rpx;
  614. letter-spacing: 0px;
  615. text-align: left;
  616. }
  617. }
  618. }
  619. /* Interview List Styles */
  620. .interview-list {
  621. padding: 0 20rpx;
  622. }
  623. /* Date Selector */
  624. .date-selector {
  625. background: #ffffff;
  626. border-radius: 12rpx;
  627. padding: 24rpx 0;
  628. // margin-bottom: 20rpx;
  629. // border: 0.5px solid rgba(227, 231, 236, 1);
  630. }
  631. .week-days {
  632. display: flex;
  633. justify-content: space-between;
  634. margin-bottom: 16rpx;
  635. }
  636. .day-name {
  637. color: rgba(153, 153, 153, 1);
  638. font-family: DM Sans;
  639. font-size: 24rpx;
  640. font-weight: 400;
  641. line-height: 32rpx;
  642. text-align: center;
  643. flex: 1;
  644. }
  645. .week-dates {
  646. display: flex;
  647. justify-content: space-between;
  648. }
  649. .date-item {
  650. flex: 1;
  651. display: flex;
  652. justify-content: center;
  653. align-items: center;
  654. height: 60rpx;
  655. border-radius: 50%;
  656. cursor: pointer;
  657. min-width: 60rpx;
  658. max-width: 60rpx;
  659. }
  660. .date-item.active {
  661. background: rgba(1, 107, 246, 1);
  662. }
  663. .date-value {
  664. color: rgba(51, 51, 51, 1);
  665. font-family: DM Sans;
  666. font-size: 28rpx;
  667. font-weight: 400;
  668. line-height: 36rpx;
  669. text-align: center;
  670. }
  671. .date-item.active .date-value {
  672. color: #ffffff;
  673. }
  674. /* Interview Records */
  675. .interview-records {
  676. background: #ffffff;
  677. border-radius: 12rpx;
  678. padding: 24rpx 0;
  679. // border: 0.5px solid rgba(227, 231, 236, 1);
  680. }
  681. .interview-record {
  682. display: flex;
  683. position: relative;
  684. border-radius: 8rpx;
  685. margin-bottom: 16rpx;
  686. }
  687. .interview-record.today {
  688. background: rgba(250, 187, 143, 1);
  689. }
  690. .interview-record:not(.today) {
  691. background: rgba(221, 221, 221, 1);
  692. }
  693. .interview-record:last-child {
  694. margin-bottom: 0;
  695. }
  696. /* Record Content */
  697. .record-content {
  698. flex: 1;
  699. display: flex;
  700. align-items: center;
  701. gap: 24rpx;
  702. }
  703. .record-left {
  704. display: flex;
  705. flex-direction: column;
  706. min-width: 80rpx;
  707. padding: 32rpx;
  708. }
  709. .record-divider {
  710. width: 10rpx;
  711. height: 100%;
  712. background: rgba(1, 107, 246, 1);
  713. }
  714. .record-right {
  715. flex: 1;
  716. display: flex;
  717. flex-direction: column;
  718. gap: 8rpx;
  719. }
  720. .date-label {
  721. color: rgba(106, 106, 106, 1);
  722. font-family: DM Sans;
  723. font-size: 16rpx;
  724. font-weight: 400;
  725. line-height: 40rpx;
  726. letter-spacing: 0.5%;
  727. text-align: right;
  728. }
  729. .time-label {
  730. color: rgba(106, 106, 106, 1);
  731. font-family: DM Sans;
  732. font-size: 24rpx;
  733. font-weight: 400;
  734. line-height: 32rpx;
  735. letter-spacing: 0.5%;
  736. text-align: left;
  737. }
  738. .candidate-name {
  739. color: rgba(51, 51, 51, 1);
  740. font-family: DM Sans;
  741. font-size: 32rpx;
  742. font-weight: 600;
  743. line-height: 40rpx;
  744. }
  745. .candidate-details {
  746. color: rgba(102, 102, 102, 1);
  747. font-family: DM Sans;
  748. font-size: 24rpx;
  749. font-weight: 400;
  750. line-height: 32rpx;
  751. }
  752. /* Empty State - 与jobManagement页面保持一致 */
  753. .empty-state {
  754. display: flex;
  755. align-items: center;
  756. justify-content: center;
  757. padding: 40rpx;
  758. .empty-illustration {
  759. margin-bottom: 40rpx;
  760. .empty-image {
  761. width: 700rpx;
  762. height: 800rpx;
  763. }
  764. }
  765. .empty-text {
  766. color: rgba(120, 130, 138, 1);
  767. font-family: DM Sans;
  768. font-size: 28rpx;
  769. font-weight: 400;
  770. line-height: 36rpx;
  771. letter-spacing: 0.5%;
  772. text-align: center;
  773. }
  774. }
  775. </style>