From 8e90c1f14418ad8b2357ef6bf5b2338ab7b7854a Mon Sep 17 00:00:00 2001 From: shidongli Date: Thu, 16 Nov 2023 10:42:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pagesB/confirmation/confirmation.vue | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pagesB/confirmation/confirmation.vue b/pagesB/confirmation/confirmation.vue index f6b4909..24c76ad 100644 --- a/pagesB/confirmation/confirmation.vue +++ b/pagesB/confirmation/confirmation.vue @@ -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='' + + } } },