From d82fa23746944125df63c310b34e38b4979bb1ca Mon Sep 17 00:00:00 2001
From: HelenHuang <LinHuang@pollex.com.tw>
Date: 星期二, 15 三月 2022 10:59:24 +0800
Subject: [PATCH] Fixed :[顧問管理預約單] - 約訪紀錄 -內文超過畫面 強制換行

---
 PAMapp/components/Interview/InterviewAdd.vue  |    2 +-
 PAMapp/components/Interview/InterviewCard.vue |    2 ++
 PAMapp/assets/scss/utilities/_utilities.scss  |    4 ++++
 3 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/PAMapp/assets/scss/utilities/_utilities.scss b/PAMapp/assets/scss/utilities/_utilities.scss
index c0281b9..343b4ba 100644
--- a/PAMapp/assets/scss/utilities/_utilities.scss
+++ b/PAMapp/assets/scss/utilities/_utilities.scss
@@ -112,3 +112,7 @@
 .text--break-all {
   word-break: break-all
 }
+
+.line-height {
+  line-height: 1.2;
+}
\ No newline at end of file
diff --git a/PAMapp/components/Interview/InterviewAdd.vue b/PAMapp/components/Interview/InterviewAdd.vue
index 145c41f..231053d 100644
--- a/PAMapp/components/Interview/InterviewAdd.vue
+++ b/PAMapp/components/Interview/InterviewAdd.vue
@@ -45,7 +45,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>
diff --git a/PAMapp/components/Interview/InterviewCard.vue b/PAMapp/components/Interview/InterviewCard.vue
index 5c39f5f..6a5487c 100644
--- a/PAMapp/components/Interview/InterviewCard.vue
+++ b/PAMapp/components/Interview/InterviewCard.vue
@@ -26,6 +26,7 @@
               <div class="p mt-5">
                 <UiDateFormat
                             class="mt-5 line-space time"
+                            style="display:flex;"
                             :date="item.interviewDate"
                             onlyShowSection="DATE" />
               </div>
@@ -57,6 +58,7 @@
                     <div class="mb-3 mt-2">
                       <UiDateFormat
                             class=" date"
+                            style="display:flex;"
                             :date="item.interviewDate"
                             onlyShowSection="YEAR" />
                     </div>

--
Gitblit v1.8.0