From 3dd41875f8a623bda069ab4f9c1e2fd6c757c44e Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期六, 22 一月 2022 17:06:47 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/Phase3' into Phase3 --- 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