From a975c17253ee2ec8d63c71bc57a80bcb7ae487cb Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期一, 24 一月 2022 17:03:22 +0800 Subject: [PATCH] Fixde: ClientCard 跑版修正 --- PAMapp/components/Client/ClientCard.vue | 13 ++++++------- 1 files changed, 6 insertions(+), 7 deletions(-) diff --git a/PAMapp/components/Client/ClientCard.vue b/PAMapp/components/Client/ClientCard.vue index e010af8..70510bf 100644 --- a/PAMapp/components/Client/ClientCard.vue +++ b/PAMapp/components/Client/ClientCard.vue @@ -261,12 +261,6 @@ viewAppointmentDetail(): void { this.getAppointmentDetail(this.client.id).then((_) => { - // setTimeout(() => { - // const unread = !this.client.consultantReadTime; - // if (unread) { - // this.readAppointment(); - // } - // }, 0); const unread = !this.client.consultantReadTime; if (unread) { this.readAppointment(); @@ -471,10 +465,14 @@ .professionals { overflow : hidden; text-overflow: ellipsis; - white-space : nowrap; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 1; .professionalsTxt { font-size : 12px; margin-right: 5px; + + } .noProfessionalsTxt { color : $PRUDENTIAL_GREY; @@ -522,6 +520,7 @@ display: flex; } .invite-msg{ + width: 96px; color: $PRIMARY_RED; @extend .text--underline; } -- Gitblit v1.8.0