From a973040ec6b1d92b1440132d77fe41072585c1a0 Mon Sep 17 00:00:00 2001
From: Mila <Mila@pollex.com.tw>
Date: 星期六, 22 一月 2022 11:40:46 +0800
Subject: [PATCH] fixed TODO#134578 約訪通知 : 預計約訪時段不可選擇過去時間

---
 PAMapp/components/Interview/InterviewMsg.vue |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/PAMapp/components/Interview/InterviewMsg.vue b/PAMapp/components/Interview/InterviewMsg.vue
index 9695183..8d6de8d 100644
--- a/PAMapp/components/Interview/InterviewMsg.vue
+++ b/PAMapp/components/Interview/InterviewMsg.vue
@@ -23,6 +23,8 @@
         <div class="mdTxt mt-30 mb-10">����赤��挾</div>
         <DateTimePicker
           @changeDateTime="interviewTime = $event"
+          :isPastDateDisabled="true"
+          :defaultValue="defaultValue"
         ></DateTimePicker>
       </div>
 
@@ -69,6 +71,9 @@
     @Prop()
     client!: Appointment;
 
+    @Prop()
+    defaultValue!: string;
+
     @Emit('closeDialog')
     closeDialog() {
         return;

--
Gitblit v1.8.0