From d1951b45d8427446ce3cb3b36d3cfb10c7f5c2ee Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期三, 17 十一月 2021 10:30:43 +0800 Subject: [PATCH] update: [註冊新帳戶] 如果沒有閱讀完使用者條款,disable 註冊按鈕、合約條款排版 --- PAMapp/layouts/default.vue | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/PAMapp/layouts/default.vue b/PAMapp/layouts/default.vue index faa3fe4..302a1b7 100644 --- a/PAMapp/layouts/default.vue +++ b/PAMapp/layouts/default.vue @@ -47,7 +47,7 @@ // format to {page}-banner or pam-no-banner tag private routeFormatBannerClass(route: string): string { - const needBannerTags = ['recommendConsultant', 'quickFilter', 'myConsultantList-consultantList','myAppointmentList-appointmentList']; + const needBannerTags = ['recommendConsultant', 'quickFilter', 'myConsultantList-consultantList', 'myConsultantList-contactedList', 'myAppointmentList-appointmentList', 'myAppointmentList-contactedList']; return _.includes(needBannerTags, route) ? route + '-banner' : 'pam-no-banner'; }; @@ -57,7 +57,7 @@ // format to {page}-container tag private routeFormatContainClass(route: string): string { - const needContainBgTags = ['recommendConsultant', 'questionnaire']; + const needContainBgTags = ['recommendConsultant', 'questionnaire-agentNo']; return _.includes(needContainBgTags, route) ? route + '-container' : ''; }; } @@ -161,7 +161,7 @@ } } - .myConsultantList-consultantList { + .myConsultantList-consultantList,.myConsultantList-contactedList { &-banner { background-image: url('~/assets/images/myConsultantList/banner_mob.svg'); } @@ -173,7 +173,7 @@ } } - .questionnaire { + .questionnaire-agentNo { &-container { background-image: url('~/assets/images/recommendConsultant/bg_flower_mob.svg'); background-size: contain; @@ -186,7 +186,7 @@ } } } - .myAppointmentList-appointmentList{ + .myAppointmentList-appointmentList,.myAppointmentList-contactedList{ &-banner { background-image: url('~/assets/images/myAppointmentList/agent_banner_mob.svg'); } -- Gitblit v1.8.0