From e422239791b35a7c466372eda8c99d2775a6bae1 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期六, 22 一月 2022 14:55:51 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/Phase3' into Phase3 --- PAMapp/components/Interview/InterviewMsg.vue | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/PAMapp/components/Interview/InterviewMsg.vue b/PAMapp/components/Interview/InterviewMsg.vue index 9695183..17837dc 100644 --- a/PAMapp/components/Interview/InterviewMsg.vue +++ b/PAMapp/components/Interview/InterviewMsg.vue @@ -20,9 +20,11 @@ </el-input> <div v-if="client.phone"> - <div class="mdTxt mt-30 mb-10">����赤��挾</div> + <div class="mdTxt mt-30 mb-10 required">����赤��挾</div> <DateTimePicker @changeDateTime="interviewTime = $event" + :isPastDateDisabled="true" + :defaultValue="defaultValue" ></DateTimePicker> </div> @@ -68,6 +70,9 @@ @Prop() client!: Appointment; + + @Prop() + defaultValue!: string; @Emit('closeDialog') closeDialog() { @@ -118,6 +123,15 @@ <style lang="scss" > .interview-msg-component{ + .required { + position: relative; + &::before { + content: '*'; + position: absolute; + color: #FF0000; + transform: translate(-12px, 0); + } + } .msg-dialog-title{ display: flex; justify-content: center; -- Gitblit v1.8.0