From 4d573c67bec4e81781bf68b61cec5828118c52b0 Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期三, 15 十二月 2021 12:08:23 +0800
Subject: [PATCH] fixed#132436: 顧問細節查看的畫面專長領域資料是空的

---
 PAMapp/pages/agentInfo/_agentNo.vue |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/PAMapp/pages/agentInfo/_agentNo.vue b/PAMapp/pages/agentInfo/_agentNo.vue
index fb9be0a..c164fad 100644
--- a/PAMapp/pages/agentInfo/_agentNo.vue
+++ b/PAMapp/pages/agentInfo/_agentNo.vue
@@ -115,7 +115,7 @@
         class="pam-paragraph">
         <UiField icon="flag" label="撠����">
           <div class="pam-field-experts">
-            <div class="text--orange bold pr-10" v-for="(expert, index) in agentInfo.expertises" :key="index">
+            <div class="text--orange bold pr-10" v-for="(expert, index) in agentInfo.expertise" :key="index">
               #{{ expert }}
             </div>
           </div>
@@ -246,11 +246,10 @@
   phoneNumber     : string;
   serveArea       : string;
   companyAddress  : string;
-  lastestLoginTime: Date | null;
   seniority       : string;
   suitability     : number;
   evaluation      : number;
-  expertises      : string[];
+  expertise       : string[];
   concept         : string;
   experiences     : string[];
   awards          : string;

--
Gitblit v1.8.0