From f90c94f20b5f11d3b3ce0164d619c0112d5158c9 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期四, 20 一月 2022 18:23:56 +0800 Subject: [PATCH] update: TODO#133100 顧問端:header增加顧問頭像圖示 --- PAMapp/pages/myConsultantList/contactedList.vue | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/PAMapp/pages/myConsultantList/contactedList.vue b/PAMapp/pages/myConsultantList/contactedList.vue index 1977f6b..4f8ace8 100644 --- a/PAMapp/pages/myConsultantList/contactedList.vue +++ b/PAMapp/pages/myConsultantList/contactedList.vue @@ -16,12 +16,16 @@ import { Vue, Component, Prop } from 'nuxt-property-decorator' ; import { Consultant } from '~/shared/models/consultant.model'; - @Component export default class ContactedList extends Vue { - @Prop() contactedList!: Consultant[]; + + @Prop() + contactedList!: Consultant[]; + pageList: Consultant[] = []; + ////////////////////////////////////////////////////////////////////// + changePage(pageList: Consultant[]) { this.pageList = pageList; } -- Gitblit v1.8.0