From 197a3698aa4cb79f3441b9b3a358ef1e32c1c8cb Mon Sep 17 00:00:00 2001 From: geekgeekrun Date: Tue, 2 Apr 2024 09:48:16 +0800 Subject: [PATCH] enhance the display of year package; add the button to view online resume; make table size to be smaller --- .../page/Configuration/StartChatRecord.vue | 41 ++++++++++++++++++- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/packages/ui/src/renderer/src/page/Configuration/StartChatRecord.vue b/packages/ui/src/renderer/src/page/Configuration/StartChatRecord.vue index 1cc2707..03337cc 100644 --- a/packages/ui/src/renderer/src/page/Configuration/StartChatRecord.vue +++ b/packages/ui/src/renderer/src/page/Configuration/StartChatRecord.vue @@ -5,7 +5,15 @@
- + @@ -17,10 +25,32 @@ + + +
@@ -96,6 +126,13 @@ onMounted(() => { ro.disconnect() }) }) + +function handleViewJobButtonClick(encryptJobId: string) { + electron.ipcRenderer.send( + 'open-external-link', + `https://www.zhipin.com/job_detail/${encryptJobId}.html` + ) +}