From 25fc3b515ecb3b3ae4f0bdfca21811dd0e68c7e6 Mon Sep 17 00:00:00 2001
From: Mila <Mila@pollex.com.tw>
Date: 星期二, 14 十二月 2021 11:38:17 +0800
Subject: [PATCH] update: TODO#131539 增加成功取消預約popup

---
 PAMapp/components/Consultant/ConsultantCard.vue |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/PAMapp/components/Consultant/ConsultantCard.vue b/PAMapp/components/Consultant/ConsultantCard.vue
index ef375ff..67ee54a 100644
--- a/PAMapp/components/Consultant/ConsultantCard.vue
+++ b/PAMapp/components/Consultant/ConsultantCard.vue
@@ -119,6 +119,13 @@
                 <el-button @click="cancel" type="primary">蝣箏��</el-button>
             </div>
         </PopUpFrame>
+
+        <PopUpFrame :isOpen.sync="isConfirmPopup">
+            <div class="text--center mdTxt">撌脫����迨蝑���</div>
+            <div class="text--center mt-30">
+                <el-button @click="isConfirmPopup = false" type="primary">蝣箏��</el-button>
+            </div>
+        </PopUpFrame>
     </div>
 </template>
 
@@ -163,6 +170,7 @@
     inputScore = 0;
     isCancelPopup = false;
     hideReviews = hideReviews;
+    isConfirmPopup = false;
 
     get latestContactedAppointment(): Appointment | null {
         if (!(this.agentInfo && this.agentInfo.appointments && this.agentInfo.appointments.length)) return null;
@@ -304,6 +312,9 @@
             this.storeConsultantList();
             this.isVisibleDialog = false;
             this.isCancelPopup = false;
+            setTimeout(() => {
+                this.isConfirmPopup = true;
+            }, 300);
         });
     }
 

--
Gitblit v1.8.0