保誠-保戶業務員媒合平台
HelenHuang
2022-02-23 40f5938230b4da2045eb170f92ba6967be1dac5a
fixed# [加入顧問清單API] 變更傳給後端的時間格式為ISO string
修改2個檔案
4 ■■■■ 已變更過的檔案
PAMapp/components/AddAndReservedBtns.vue 2 ●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程
PAMapp/pages/questionnaire/_agentNo.vue 2 ●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程
PAMapp/components/AddAndReservedBtns.vue
@@ -49,7 +49,7 @@
        if (!this.isUserLogin) {
          item = {
            ...item,
            updateTime: new Date().toString()
            updateTime: new Date().toISOString()
          };
        }
        this.addToMyConsultantList(item).then(addOk => {
PAMapp/pages/questionnaire/_agentNo.vue
@@ -433,7 +433,7 @@
      if (this.isEditBtn) {
        this.editAppointmentDemand();
      } else {
        queryConsultantService.addFavoriteConsultant([{ agentNo: this.$route.params.agentNo, createdTime: new Date().toString()}]).then(res => this.sentAppointmentDemand());
        queryConsultantService.addFavoriteConsultant([{ agentNo: this.$route.params.agentNo, createdTime: new Date().toISOString()}]).then(res => this.sentAppointmentDemand());
      }
       const editSettingInfo: UserSetting = {
          name: this.myRequest.name,