From 9bdb95c9e34cef640534e5e5a1e2225a80442000 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 09 六月 2022 15:48:15 +0800 Subject: [PATCH] TODO#139894 [ footer -最下方說明與保經代合作 ] 文案修改 --- PAMapp/layouts/default.vue | 21 ++++++++++++++++++--- 1 files changed, 18 insertions(+), 3 deletions(-) diff --git a/PAMapp/layouts/default.vue b/PAMapp/layouts/default.vue index e8f4573..890a74c 100644 --- a/PAMapp/layouts/default.vue +++ b/PAMapp/layouts/default.vue @@ -57,13 +57,13 @@ // format to {page}-banner or pam-no-banner tag private routeFormatBannerClass(route: string): string { - const needBannerRoutes = ['recommendConsultant', 'quickFilter', 'myConsultantList-consultantList', 'myConsultantList-contactedList', 'myAppointmentList-appointmentList', 'myAppointmentList-contactedList', 'login']; + const needBannerRoutes = ['recommendConsultant', 'quickFilter', 'myConsultantList-consultantList', 'myConsultantList-contactedList', 'myAppointmentList-appointmentList', 'myAppointmentList-contactedList', 'login', 'notification']; return _.includes(needBannerRoutes, route) ? route + '-banner' : 'pam-no-banner'; }; private bannerText: FeatureBannerTitle= { - [FeaturePage.RECOMMEND_CONSULTANT]: ['頛詨������', '靘雿��瘙���憿批��'], - [FeaturePage.QUICK_FILTER] : ['暺銝����', '撠雿�EST Match'], + [FeaturePage.RECOMMEND_CONSULTANT]: ['頛詨�犖��瘙��末', '���敺�澈��銋�憿批��'], + [FeaturePage.QUICK_FILTER] : ['靘�犖��末敹恍����', '��雿��雿喲“���'], [FeaturePage.MY_CONSULTANT_LIST] : [], [FeaturePage.QUESTIONNAIRE] : [], } @@ -114,6 +114,9 @@ } @include desktop { + .pam-banner { + height: 150px; + } .mt-navBar { margin-top: calc($DESKTOP_NAV_BAR + $MOB_NAV_BAR); } @@ -219,4 +222,16 @@ } } + .notification { + &-banner { + background-image: url('~/assets/images/notification/banner_mob.svg'); + } + + @include desktop { + &-banner { + background-image: url('~/assets/images/notification/banner_web.svg'); + } + } + } + </style> -- Gitblit v1.8.0