From 60dc6e178e4ab05ea8f62f7baa1dd72a5c20f93c Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期一, 13 十二月 2021 16:10:13 +0800
Subject: [PATCH] fixed#132096: 查看完聯絡清單(或登出後再登入),顧問清單的黃點並不會消失

---
 PAMapp/assets/ts/models/consultant.model.ts |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/PAMapp/assets/ts/models/consultant.model.ts b/PAMapp/assets/ts/models/consultant.model.ts
index c9326b7..4d3845e 100644
--- a/PAMapp/assets/ts/models/consultant.model.ts
+++ b/PAMapp/assets/ts/models/consultant.model.ts
@@ -1,16 +1,16 @@
-export interface Consultants {
+export interface Consultant {
     agentNo            : string;
     name               : string;
     img                : string;
     expertise          : string[];
     avgScore           : number;
     contactStatus?     : string;
-    createTime: Date;
-    updateTime         : Date;
+    createTime         : Date | string;
+    updateTime         : Date | string;
+    customerViewTime?  : Date | string;
     role               : string;
     seniority          : string,
     appointments?      : Appointment[];
-    new                : boolean,
 }
 
 export interface Appointment {

--
Gitblit v1.8.0