保誠-保戶業務員媒合平台
Tomas
2023-08-05 ffcf1c449974fffad5e827ab0dd2d3bb21327d5f
PAMapp/components/Interview/InterviewMsg.vue
@@ -157,17 +157,18 @@
    addInterview() {
      const appointmentInformation: ToInformAppointment = {
        appointmentId: this.client.id,
        email        : this.client?.email,
      appointmentId: this.client?.id || 0,
      email: this.client?.email || '',
        interviewDate: this.interviewContent.interviewTime,
        message      : this.interviewTxt,
        phone        : this.client?.phone,
      phone: this.client?.phone || '',
      };
      appointmentService.informAppointment(appointmentInformation).then((_) => {
        this.isShowSuccessAlert = true ;
      });
    }
    closeAllDialog() {
      this.isShowSuccessAlert = false ;
      this.dialogVisible = false;