From 462276cf6eea4df128c4327f5a864cf0d2c823e9 Mon Sep 17 00:00:00 2001 From: geekgeekrun Date: Sun, 13 Apr 2025 19:48:01 +0800 Subject: [PATCH] fix wrong display of JobInfoSnapshot --- .../src/features/JobInfoSnapshot/index.vue | 18 ++++++++++++++---- .../page/MainLayout/MarkAsNotSuitRecord.vue | 1 + .../src/page/MainLayout/StartChatRecord.vue | 1 + 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/packages/ui/src/renderer/src/features/JobInfoSnapshot/index.vue b/packages/ui/src/renderer/src/features/JobInfoSnapshot/index.vue index 8455f56..6195f70 100644 --- a/packages/ui/src/renderer/src/features/JobInfoSnapshot/index.vue +++ b/packages/ui/src/renderer/src/features/JobInfoSnapshot/index.vue @@ -3,7 +3,14 @@ {{ jobInfo.companyName }} {{ jobInfo.jobName }} {{ jobInfo.positionName }} - + + {{ + jobInfo.date + ? transformUtcDateToLocalDate(jobInfo.date).format('YYYY-MM-DD HH:mm:ss') + : '无记录' + }} + + {{ jobInfo.date ? transformUtcDateToLocalDate(jobInfo.date).format('YYYY-MM-DD HH:mm:ss') @@ -18,19 +25,22 @@
{{ jobInfo.description }}
- {{ jobInfo.bossName }} - {{ jobInfo.bossTitle }} + {{ jobInfo.bossName + }}