From 67a28e2d44510333ee334de5c59ca0f72b02a071 Mon Sep 17 00:00:00 2001 From: jack <jack.su@pollex.com.tw> Date: 星期三, 19 七月 2023 16:30:24 +0800 Subject: [PATCH] [UPDATE] 調整method名稱 [ADD] 新增SQL文件 --- PAMapp/components/Interview/InterviewAdd.vue | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/PAMapp/components/Interview/InterviewAdd.vue b/PAMapp/components/Interview/InterviewAdd.vue index 145c41f..171345f 100644 --- a/PAMapp/components/Interview/InterviewAdd.vue +++ b/PAMapp/components/Interview/InterviewAdd.vue @@ -21,8 +21,10 @@ ><i class="icon-edit"></i></span> </el-col> </el-row> + <template v-if="!interviewId || isEdit"> <DateTimePicker + :disabledBeforeSpecificDate="appointmentDetail.appointmentDate" @changeDateTime="interviewTime = $event" :defaultValue="defaultValue" ></DateTimePicker> @@ -45,7 +47,7 @@ </el-input> </template> <template v-else> - <div class="fs-20 mt-20"> + <div class="fs-20 mt-20 text--break-all line-height"> {{content}} </div> </template> @@ -186,7 +188,7 @@ this.confirmTxt = confirmTxt; this.updateAppointmentDetail(+this.appointmentId); - if (new Date(this.interviewTime).getTime() >= new Date().getTime()) { + if (new Date(this.interviewTime).getTime() >= new Date().getTime() && (!this.appointmentDetail.appointmentClosedInfo)) { this.showFutureDateConfirmPopup = true; } else { this.showConfirmPopup = true; -- Gitblit v1.8.0