From f568be564830f6e44d0c8a5ca1d8ee9cc2839edb Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 31 三月 2022 09:36:24 +0800 Subject: [PATCH] ADD#137283 [ 前台] 顧問年資 : 以顧問到職日計算年資 --- PAMapp/components/Consultant/ConsultantSwiper.vue | 18 ++++++++++++------ 1 files changed, 12 insertions(+), 6 deletions(-) diff --git a/PAMapp/components/Consultant/ConsultantSwiper.vue b/PAMapp/components/Consultant/ConsultantSwiper.vue index 45a2ba7..ae61981 100644 --- a/PAMapp/components/Consultant/ConsultantSwiper.vue +++ b/PAMapp/components/Consultant/ConsultantSwiper.vue @@ -17,16 +17,19 @@ > </UiAvatar> <div class="name">{{agentInfo.name}}</div> - <div v-if="!hideReviews"> - <!-- TODO:���遛��漲 --> + <div v-if="!hideReviews" style="display: flex; align-items: center; justify-content: center; margin-top: 4px"> <i class="icon-star pam-icon icon--yellow"></i> <span class="satisfaction">{{agentInfo.avgScore}}</span> </div> </div> </swiper-slide> - <div class="swiper-button-prev" slot="button-prev"></div> - <div class="swiper-button-next" slot="button-next"></div> + <div class="swiper-button-prev" slot="button-prev"> + <i class="icon-left"></i> + </div> + <div class="swiper-button-next" slot="button-next"> + <i class="icon-right"></i> + </div> </swiper> </div> </template> @@ -93,9 +96,12 @@ height: 100%; &:after { + display: none; + } + + .icon-right,.icon-left { font-size: 20px; - font-weight: bold; - color: #707A81; + color: $CORAL; } &.swiper-button-disabled { -- Gitblit v1.8.0