From 1076fdc06d40646d1d6f125a3ce4d43cf4eac673 Mon Sep 17 00:00:00 2001
From: HelenHuang <LinHuang@pollex.com.tw>
Date: 星期一, 06 十二月 2021 15:52:01 +0800
Subject: [PATCH] rename: change Consultants model to Consultant

---
 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 fb64a88..a9d3d72 100644
--- a/PAMapp/pages/myConsultantList/contactedList.vue
+++ b/PAMapp/pages/myConsultantList/contactedList.vue
@@ -13,15 +13,15 @@
 
 <script lang="ts">
 import { Vue, Component, Prop } from 'nuxt-property-decorator' ;
-import { Consultants } from '~/assets/ts/models/consultant.model';
+import { Consultant } from '~/assets/ts/models/consultant.model';
 
 
 @Component
 export default class ContactedList extends Vue {
-    @Prop() contactedList!: Consultants[];
-    pageList: Consultants[] = [];
+    @Prop() contactedList!: Consultant[];
+    pageList: Consultant[] = [];
 
-    changePage(pageList: Consultants[]) {
+    changePage(pageList: Consultant[]) {
         this.pageList = pageList;
     }
 }

--
Gitblit v1.8.0