From 2b4ffaea5c43c32a9335d4aa9becceea220ce68c Mon Sep 17 00:00:00 2001
From: Mila <Mila@pollex.com.tw>
Date: 星期三, 03 十一月 2021 09:16:58 +0800
Subject: [PATCH] TODO#129054 我的顧問清單 畫面刻版

---
 PAMapp/plugins/api/home.ts |   85 +++++++++++++++++++++++-------------------
 1 files changed, 47 insertions(+), 38 deletions(-)

diff --git a/PAMapp/plugins/api/home.ts b/PAMapp/plugins/api/home.ts
index b26d5aa..854f0ff 100644
--- a/PAMapp/plugins/api/home.ts
+++ b/PAMapp/plugins/api/home.ts
@@ -5,76 +5,84 @@
     recommendConsultantList(){
         const debugData = [
             {
-                id: 0,
+                new: true,
+                agentNo: 0,
                 name: '撘萄���',
                 img: 'https://randomuser.me/api/portraits/women/31.jpg',
-                new: false,
-                tags: ['鞎∪����', '鞈頧宏'],
+                professionals: ['鞎∪����', '鞈頧宏'],
                 satisfaction: 4.8,
-                reserve: false
+                contactStatus: 'reserved',
+                updateTime: 'Tue Nov 02 2021 11:40:02 GMT+0800 (��������)'
             },
             {
-                id: 1,
+                new: true,
+                agentNo: 1,
                 name: '�撣亙',
                 img: 'https://randomuser.me/api/portraits/men/32.jpg',
-                new: true,
-                tags: [],
+                professionals: [],
                 satisfaction: 4,
-                reserve: false
+                contactStatus: 'contacted',
+                updateTime: 'Tue Nov 02 2021 11:40:02 GMT+0800 (��������)'
             },
             {
-                id: 2,
+                new: false,
+                agentNo: 2,
                 name: '���戊',
                 img: 'https://randomuser.me/api/portraits/women/33.jpg',
-                new: false,
-                tags: ['鞎∪����', '鞈頧宏'],
+                professionals: ['鞎∪����', '鞈頧宏'],
                 satisfaction: 5,
-                reserve: true
+                contactStatus: 'picked',
+                updateTime: 'Tue Oct 12 2021 19:05:02 GMT+0800 (��������)'
             },
             {
-                id: 3,
+                new: false,
+                agentNo: 3,
                 name: '�蝢��',
                 img: 'https://randomuser.me/api/portraits/women/34.jpg',
-                new: true,
-                tags: ['鞎∪����', '鞈頧宏'],
+                professionals: ['鞎∪����', '鞈頧宏'],
                 satisfaction: 4.3,
-                reserve: false
+                contactStatus: 'picked',
+                updateTime: 'Tue Nov 02 2021 11:40:02 GMT+0800 (��������)'
             },
             {
-                id: 4,
+                new: true,
+                agentNo: 4,
                 name: '撘萄���',
                 img: 'https://randomuser.me/api/portraits/women/35.jpg',
-                state: '敹��',
-                tags: [],
+                professionals: [],
                 satisfaction: 4.8,
-                reserve: true
+                contactStatus: 'picked',
+                updateTime: 'Tue Nov 02 2021 11:40:02 GMT+0800 (��������)'
             },
             {
-                id: 5,
+                new: true,
+                agentNo: 5,
                 name: '�撣亙',
                 img: 'https://randomuser.me/api/portraits/men/36.jpg',
-                new: true,
-                tags: ['鞎∪����', '鞈頧宏'],
-                satisfaction: 4,
-                reserve: false
+                professionals: ['鞎∪����', '鞈頧宏'],
+                satisfaction: 4.8,
+                contactStatus: 'reserved',
+                updateTime: 'Tue Nov 02 2021 11:40:02 GMT+0800 (��������)'
             },
             {
-                id: 6,
+                new: false,
+                agentNo: 6,
                 name: '���戊',
                 img: 'https://randomuser.me/api/portraits/women/37.jpg',
-                state: '敹��',
-                tags: [],
-                satisfaction: 5,
-                reserve: false
+                professionals: ['鞎∪����', '鞈蝘餉��', '蝭�蝔�', '璅暑��隡�'],
+                satisfaction: 4.8,
+                contactStatus: 'picked',
+                updateTime: 'Tue Nov 02 2021 10:40:02 GMT+0800 (��������)'
             },
             {
-                id: 7,
+                new: false,
+                agentNo: 7,
                 name: '�蝢��',
                 img: 'https://randomuser.me/api/portraits/women/38.jpg',
-                new: false,
-                tags: [],
-                satisfaction: 4.3,
-                reserve: true
+                professionals: ['鞎∪����', '蝭�蝔�', '璅暑��隡�'],
+                satisfaction: 4.8,
+                contactStatus: 'picked',
+                updateTime: 'Tue Sep 02 2021 09:40:02 GMT+0800 (��������)'
             }
         ]
         return CommonService.prototype.withDebugData(debugData, 'https://randomuser.me/api/')
@@ -82,11 +90,12 @@
 })
 
 export interface Agents {
-    id: number,
+    agentNo: number,
     name: string,
     img: string,
     new: boolean,
     satisfaction: number,
-    tags: string[],
-    reserve: boolean
+    professionals: string[],
+    contactStatus: string,
+    updateTime: Date
   }
\ No newline at end of file

--
Gitblit v1.8.0