This commit is contained in:
shidongli 2023-11-16 10:42:50 +08:00
parent 91258d2442
commit 8e90c1f144

View File

@ -255,9 +255,23 @@
if (item == 'morning') {
this.formdata.appointmentStartTime = this.appointmentTimeList[this.timecurrent].morningList[0]
.starttime
if(this.appointmentTimeList[this.timecurrent].morningList[0].status==true){
this.formdata.schedulePlanDetailId = this.appointmentTimeList[this.timecurrent].morningList[0].schedulePlanDetailId
}else{
this.formdata.schedulePlanDetailId=''
}
} else if (item == 'after') {
this.formdata.appointmentEndTime = this.appointmentTimeList[this.timecurrent].morningList[0]
.endtime
if(this.appointmentTimeList[this.timecurrent].morningList[0].status==true){
this.formdata.schedulePlanDetailId = this.appointmentTimeList[this.timecurrent].afternoonList[0].schedulePlanDetailId
}else{
this.formdata.schedulePlanDetailId=''
}
}
},