PAMapp/components/Consultant/ConsultantCard.vue | ●●●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程 | |
PAMapp/pages/myConsultantList.vue | ●●●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程 | |
PAMapp/shared/models/consultant.model.ts | ●●●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程 |
PAMapp/components/Consultant/ConsultantCard.vue
@@ -45,7 +45,7 @@ :class="actionBtnStyle" >{{ actionBtnLabel }}</el-button> <div class="updateTime mt-10"> {{ agentInfo.updateTime | formatDate }} {{ agentInfo.appointmentLastModifiedDate | formatDate }} </div> </el-col> </el-row> @@ -57,7 +57,7 @@ > <div v-if="appointmentDetail"> <h5 class="subTitle text--center mb-30">預約成功</h5> <p class="smTxt">{{appointmentDetail.appointmentDate | formatDate}}</p> <p class="smTxt">{{appointmentDetail.appointmentDate | formatDate}} 建立</p> <div class="reserved-info"> <p>姓名:{{appointmentDetail.name}}</p> <p>電話:{{appointmentDetail.phone}}</p> PAMapp/pages/myConsultantList.vue
@@ -90,6 +90,7 @@ appointmentDate: appointment.appointmentDate, appointmentScore: appointment.satisfactionScore, appointmentStatus: appointment.communicateStatus, appointmentLastModifiedDate: appointment.lastModifiedDate }; this.contactedList.push(consultantWithAppointmentId); }) PAMapp/shared/models/consultant.model.ts
@@ -16,9 +16,10 @@ } export interface ConsultantWithAppointmentId extends Consultant { appointmentId : number; appointmentDate : string; appointmentScore?: number; appointmentStatus: string; appointmentDate : string; appointmentId : number; appointmentLastModifiedDate: string; appointmentScore? : number; appointmentStatus : string; }