From ae3aac1ee250fd8207ff41a0f6a9f38f82a18a58 Mon Sep 17 00:00:00 2001
From: Mila <Mila@pollex.com.tw>
Date: 星期六, 22 一月 2022 17:06:14 +0800
Subject: [PATCH] fixed TODO#134587 未聯絡狀態發送約訪通知後,未顯示於約訪中列表

---
 PAMapp/components/Interview/InterviewMsg.vue |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/PAMapp/components/Interview/InterviewMsg.vue b/PAMapp/components/Interview/InterviewMsg.vue
index 17837dc..be4a0b9 100644
--- a/PAMapp/components/Interview/InterviewMsg.vue
+++ b/PAMapp/components/Interview/InterviewMsg.vue
@@ -62,6 +62,9 @@
     @appointmentStore.Action
     updateAppointmentDetail!: (id: number) => Appointment;
 
+    @appointmentStore.Action
+    getMyAppointmentList!: () => Promise<Appointment[]>;
+
     @PropSync('isVisible')
     dialogVisible!: boolean;
 
@@ -103,6 +106,7 @@
       appointmentService.informAppointment(appointmentInformation).then((_) => {
         this.isShowSuccessAlert = true ;
         this.updateAppointmentDetail(this.client.id);
+        this.getMyAppointmentList();
       });
     }
 

--
Gitblit v1.8.0