From 391d7db141245798c64aa8acb0f143ab4152aa79 Mon Sep 17 00:00:00 2001
From: Mila <Mila@pollex.com.tw>
Date: 星期三, 10 十一月 2021 10:47:46 +0800
Subject: [PATCH] TODO#130015/130016 [推薦保險顧問/我的顧問清單] api 串接

---
 PAMapp/pages/myConsultantList/contactedList.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/PAMapp/pages/myConsultantList/contactedList.vue b/PAMapp/pages/myConsultantList/contactedList.vue
index b317884..8c6d525 100644
--- a/PAMapp/pages/myConsultantList/contactedList.vue
+++ b/PAMapp/pages/myConsultantList/contactedList.vue
@@ -13,14 +13,14 @@
 
 <script lang="ts">
 import { Vue, Component, Prop } from 'nuxt-property-decorator' ;
-import { Agents } from '~/plugins/api/home';
+import { Consultants } from '~/assets/ts/api/consultant';
 
 @Component
 export default class ContactedList extends Vue {
-    @Prop() contactedList!: Agents[];
-    pageList: Agents[] = [];
+    @Prop() contactedList!: Consultants[];
+    pageList: Consultants[] = [];
 
-    changePage(pageList: Agents[]) {
+    changePage(pageList: Consultants[]) {
         this.pageList = pageList;
     }
 }

--
Gitblit v1.8.0