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/InterviewAdd.vue | 35 ++++++++++++++++++++++++++--------- 1 files changed, 26 insertions(+), 9 deletions(-) diff --git a/PAMapp/components/Interview/InterviewAdd.vue b/PAMapp/components/Interview/InterviewAdd.vue index e2d695f..722db75 100644 --- a/PAMapp/components/Interview/InterviewAdd.vue +++ b/PAMapp/components/Interview/InterviewAdd.vue @@ -5,7 +5,7 @@ <span>{{interviewRecord.lastModifiedDate | formatDate}} ��</span> </div> <el-row class="mdTxt mb-10"> - <el-col :xs="16" :sm="20">蝝赤����</el-col> + <el-col :xs="16" :sm="20" class="required">蝝赤����</el-col> <el-col :xs="8" :sm="4" class="text--right" v-if="interviewId"> <span v-if="!isEdit" @@ -77,7 +77,7 @@ @closePopUp="closePopup"> <div class="text--center mdTxt">{{confirmTxt}}嚗�</div> <div class="text--center mdTxt">蝡���赤�嚗�</div> - <div class="text--center mt-30"> + <div class="text--center mt-30" style="display:flex"> <el-button @click="closePopup">�����</el-button> <el-button @click="showInterviewMsgPopup = true" type="primary">���赤�</el-button> </div> @@ -86,6 +86,7 @@ <InterviewMsg :isVisible.sync="showInterviewMsgPopup" :client="appointmentDetail" + :defaultValue="interviewTime" @closeDialog="closePopup" ></InterviewMsg> </div> @@ -224,7 +225,7 @@ } </script> -<style lang="scss" scoped> +<style lang="scss" > .edit-appointment-record { padding-left : 10px; padding-right: 10px; @@ -235,15 +236,31 @@ margin-bottom : 26px; } } -.icon { - color : $PRIMARY_RED; - display : flex; - flex : 1; - justify-content: flex-end; -} .edit-appointment-record-btn{ margin-top: 30px; display: flex; justify-content: center; } +.el-textarea__inner { + border: 1px solid #707070; + padding: 10px 20px; + font-size: 20px; + &::placeholder { + font-size: 20px; + } +} +.required { + position: relative; + transform: translateX(10px); + + &::before { + content: '*'; + font-size: 15px; + font-weight: bold; + position: absolute; + color: #FF0000; + transform: translateX(-10px); + z-index: 5; + } +} </style> -- Gitblit v1.8.0