保誠-保戶業務員媒合平台
Tomas
2023-08-05 ffcf1c449974fffad5e827ab0dd2d3bb21327d5f
Fixed: [弱掃] p13.2 Bad use of null-like value
修改1個檔案
7 ■■■■■ 已變更過的檔案
PAMapp/components/Interview/InterviewMsg.vue 7 ●●●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程
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;