From 27513e775a91e24ef305e9962bd2d795d1f97353 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期五, 03 十二月 2021 10:57:44 +0800 Subject: [PATCH] Merge branch 'master' of https://192.168.0.10:8443/r/pcalife/PAM --- PAMapp/components/Consultant/ConsultantCard.vue | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/PAMapp/components/Consultant/ConsultantCard.vue b/PAMapp/components/Consultant/ConsultantCard.vue index 817d294..de521db 100644 --- a/PAMapp/components/Consultant/ConsultantCard.vue +++ b/PAMapp/components/Consultant/ConsultantCard.vue @@ -154,9 +154,7 @@ reserveCommunication() { const contactStatus = this.agentInfo.contactStatus; if (!contactStatus || contactStatus === 'picked') { - isLogin() - ? this.$router.push(`/questionnaire/${this.agentInfo.agentNo}`) - : this.$router.push('/login'); + this.$router.push(`/questionnaire/${this.agentInfo.agentNo}`) } else { this.openPopUp(); } @@ -264,7 +262,10 @@ .dialogInfo { font-size: 20px; overflow-y:scroll; - height: 400px; + max-height: 50vh; + @include desktop { + height: 400px; + } } </style> -- Gitblit v1.8.0