From f70b70eec5e1aa1428d3888233e259e8c52ce8b6 Mon Sep 17 00:00:00 2001
From: jack <jack.su@pollex.com.tw>
Date: 星期五, 08 九月 2023 17:18:51 +0800
Subject: [PATCH] [UPDATE] 解決弱掃Information exposure to log file, 將印在log的私密資料移除

---
 PAMapp/components/Interview/InterviewAdd.vue |   16 ++++++++++++----
 1 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/PAMapp/components/Interview/InterviewAdd.vue b/PAMapp/components/Interview/InterviewAdd.vue
index 171345f..8107e6b 100644
--- a/PAMapp/components/Interview/InterviewAdd.vue
+++ b/PAMapp/components/Interview/InterviewAdd.vue
@@ -178,11 +178,19 @@
         });
     }
 
-    private updateRecord(updateInterviewRecord) {
-        appointmentService.updateInterviewRecord(updateInterviewRecord).then(res => {
-            this.showPopUp('蝺刻摩����');
-        });
+  private async updateRecord(updateInterviewRecord) {
+    try {
+      const response = await appointmentService.updateInterviewRecord(updateInterviewRecord);
+      if (response !== null) {
+        this.showPopUp('蝺刻摩����');
+      } else {
+        throw new Error('appointmentService.updateInterviewRecord returned null-like value.');
+      }
+    } catch (error) {
+      console.error('An error occurred while updating interview record:', error);
+      throw error;
     }
+  }
 
     private showPopUp(confirmTxt) {
         this.confirmTxt = confirmTxt;

--
Gitblit v1.8.0