From f34aa90e8f838a8ca09dfc1aec4fa13bbb04af1c Mon Sep 17 00:00:00 2001 From: 劉鈞霖 <benson@gmail.com> Date: 星期五, 19 十一月 2021 15:47:58 +0800 Subject: [PATCH] [ Update ] 修正 commit:bd9d8a6b0ed6204a9bb2708fe6a894f51cc52c94 資訊 i css 寫法錯誤 --- PAMapp/components/Consultant/ConsultantSwiper.vue | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/PAMapp/components/Consultant/ConsultantSwiper.vue b/PAMapp/components/Consultant/ConsultantSwiper.vue index 29fa092..66f2a72 100644 --- a/PAMapp/components/Consultant/ConsultantSwiper.vue +++ b/PAMapp/components/Consultant/ConsultantSwiper.vue @@ -5,16 +5,16 @@ class="swiperStyle" @click-slide="clkItem" > - <swiper-slide + <swiper-slide class="fix-chrome-click--issue" v-for="(agentInfo, index) in agents" :key="index" > <div class="consultantCardStyle" > - <el-avatar class="mb-10" :size="80" :src="agentInfo.img"></el-avatar> + <UiAvatar :size="80" :fileName="agentInfo.img" class="mb-10"></UiAvatar> <div class="name">{{agentInfo.name}}</div> <div> <i class="icon-star pam-icon icon--yellow"></i> - <span class="satisfaction">{{agentInfo.satisfaction}}</span> + <span class="satisfaction">{{agentInfo.avgScore}}</span> </div> </div> </swiper-slide> @@ -28,14 +28,14 @@ <script lang="ts"> import { Vue, Component, Prop } from 'vue-property-decorator'; import { SwiperOptions } from 'swiper'; -import { Agents } from '~/plugins/api/home' +import { Consultants } from '~/assets/ts/api/consultant' @Component export default class UiSwiper extends Vue { - @Prop() agents!: Agents[]; + @Prop() agents!: Consultants[]; swiperOptions: SwiperOptions = { - loop: true, + loop: false, slideToClickedSlide: false, navigation: { nextEl: '.swiper-button-next', @@ -44,20 +44,19 @@ breakpoints: { 320: { slidesPerView: 3, - slidesPerGroup: 3, spaceBetween: 3 }, 768: { slidesPerView: 6, - slidesPerGroup: 6, spaceBetween: 3 } } } clkItem(loopIndex: number, realIndex: number) { - this.$router.push('/agentInfo'); console.log(loopIndex, realIndex, 'clkItem') + const agentNo = this.agents[loopIndex].agentNo; + this.$router.push(`/agentInfo/${agentNo}`); } } @@ -77,6 +76,7 @@ } .swiper-button-next,.swiper-button-prev { + @extend .fix-chrome-click--issue; background-color: $PRIMARY_WHITE; top: 0px; height: 100%; -- Gitblit v1.8.0