保誠-保戶業務員媒合平台
Tomas
2023-08-05 ffcf1c449974fffad5e827ab0dd2d3bb21327d5f
Fixed: [弱掃] p13.2 Bad use of null-like value
修改1個檔案
25 ■■■■ 已變更過的檔案
PAMapp/components/Interview/InterviewMsg.vue 25 ●●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程
PAMapp/components/Interview/InterviewMsg.vue
@@ -155,18 +155,19 @@
      this.interviewContent.customContent ='';
    }
    addInterview() {
      const appointmentInformation: ToInformAppointment = {
        appointmentId: this.client.id,
        email        : this.client?.email,
        interviewDate: this.interviewContent.interviewTime,
        message      : this.interviewTxt,
        phone        : this.client?.phone,
      };
      appointmentService.informAppointment(appointmentInformation).then((_) => {
        this.isShowSuccessAlert = true ;
      });
    }
  addInterview() {
    const appointmentInformation: ToInformAppointment = {
      appointmentId: this.client?.id || 0,
      email: this.client?.email || '',
      interviewDate: this.interviewContent.interviewTime,
      message: this.interviewTxt,
      phone: this.client?.phone || '',
    };
    appointmentService.informAppointment(appointmentInformation).then((_) => {
      this.isShowSuccessAlert = true;
    });
  }
    closeAllDialog() {
      this.isShowSuccessAlert = false ;