From a3716f72066d25d745f4d5103ff23a553c3e102b Mon Sep 17 00:00:00 2001
From: wayne <wayne8692wayne8692@gmail.com>
Date: 星期四, 17 二月 2022 11:41:19 +0800
Subject: [PATCH] Merge branch 'sit' into uat

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

diff --git a/PAMapp/pages/myConsultantList/contactedList.vue b/PAMapp/pages/myConsultantList/contactedList.vue
index a9d3d72..4f8ace8 100644
--- a/PAMapp/pages/myConsultantList/contactedList.vue
+++ b/PAMapp/pages/myConsultantList/contactedList.vue
@@ -2,6 +2,7 @@
     <div>
         <ConsultantList
             :agents="pageList"
+            :title="'contactedList'"
         ></ConsultantList>
 
         <UiPagination
@@ -13,16 +14,20 @@
 
 <script lang="ts">
 import { Vue, Component, Prop } from 'nuxt-property-decorator' ;
-import { Consultant } from '~/assets/ts/models/consultant.model';
-
+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;
     }
 }
-</script>
\ No newline at end of file
+</script>

--
Gitblit v1.8.0