From a575960ba0ae0f1893571c36bed6cb6f4a7ee299 Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期三, 26 一月 2022 13:32:08 +0800
Subject: [PATCH] fixed: [客戶] 首頁久未回應的顧問dialog - 點擊取消預約後的 null of undefied error

---
 PAMapp/pages/index.vue |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/PAMapp/pages/index.vue b/PAMapp/pages/index.vue
index 71f343c..b859888 100644
--- a/PAMapp/pages/index.vue
+++ b/PAMapp/pages/index.vue
@@ -75,7 +75,7 @@
                       @click.native="reviewsBtn = true">蝯虫�遛��漲閰��</el-button>
               </div>
 
-              <div v-if="appointmentDetail.communicateStatus === 'reserved' && !isAppointment" class="text--center mt-10">
+              <div v-if="appointmentDetail.communicateStatus === 'reserved'" class="text--center mt-10">
                   <el-button @click="isCancelPopup = true">������</el-button>
                   <el-button @click="edit" type="primary">蝺刻摩</el-button>
               </div>
@@ -425,10 +425,6 @@
         return !this.appointmentDetail.satisfactionScore;
       };
       return false;
-    }
-
-    get isAppointment(): boolean {
-      return !!this.agentInfo['appointmentStatus'];
     }
 
   }

--
Gitblit v1.8.0