From a7b45caf5b3784f65ba82793d87f5ffb202fca1e Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期五, 21 一月 2022 11:42:07 +0800
Subject: [PATCH] update#134555: [顧問] 預約單結案/編輯結案功能串接

---
 PAMapp/components/Client/ClientCard.vue |   43 +++++++++++++++++++++++++++----------------
 1 files changed, 27 insertions(+), 16 deletions(-)

diff --git a/PAMapp/components/Client/ClientCard.vue b/PAMapp/components/Client/ClientCard.vue
index 2d417e0..cfe5154 100644
--- a/PAMapp/components/Client/ClientCard.vue
+++ b/PAMapp/components/Client/ClientCard.vue
@@ -170,7 +170,7 @@
 </template>
 
 <script lang="ts">
-import { Vue, Component, Prop, Action, namespace, Watch } from 'nuxt-property-decorator';
+import { Vue, Component, Prop, namespace, Watch } from 'nuxt-property-decorator';
 
 import appointmentService from '~/shared/services/appointment.service';
 import myConsultantService from '~/shared/services/my-consultant.service';
@@ -180,7 +180,9 @@
 import { Appointment, AppointmentMemoInfo } from '~/shared/models/appointment.model';
 import { ContactStatus } from '~/shared/models/enum/contact-status';
 
-const localStorage = namespace('localStorage');
+const appointmentStore = namespace('appointment.store');
+const localStorage     = namespace('localStorage');
+
 @Component({
     filters: {
         formatNumber(index: number) {
@@ -201,11 +203,17 @@
     }
 })
 export default class ClientList extends Vue {
-    @Action
-    updateMyAppointment!: (data: Appointment) => void;
-
     @Prop()
     client!: Appointment;
+
+    @appointmentStore.Action
+    updateMyAppointmentList!: (data: Appointment) => void;
+
+    @appointmentStore.Action
+    getAppointmentDetail!: (appointmentId: number) => Promise<Appointment>;
+
+    @appointmentStore.Getter
+    appointmentProgress!: ContactStatus;
 
     @localStorage.Mutation
     storageClearAppointmentIdFromMsg!: () => void;
@@ -248,7 +256,10 @@
     //////////////////////////////////////////////////////////////////////
 
     viewAppointmentDetail(): void {
-      this.$router.push(`/appointment/${this.client.id}`);
+      this.getAppointmentDetail(this.client.id).then((_) => {
+        this.readAppointment();
+        this.$router.push(`/appointment/${this.client.id}`);
+      });
     }
 
     showAddInterviewDialog(): void {
@@ -257,10 +268,6 @@
 
     navigateToCloseAppointment(): void {
       this.$router.push(`/appointment/${this.client.id}/close`);
-    }
-
-    makeAppointment(): void {
-      alert('MAKE AN APPOINTMENT!');
     }
 
     inviteReview(): void {
@@ -277,22 +284,26 @@
 
     markAppointment() {
         myConsultantService.markAsContact(this.client.id).then(data => {
-            this.updateMyAppointment(data);
+            this.updateMyAppointmentList(data);
             this.isShowInformDialog = false;
         })
     }
 
     closeInformDialog(): void {
-      const unread = !this.client.consultantReadTime;
+        this.readAppointment();
+        this.isEdit = false;
+        this.clearAppointmentIdFromMsg();
+    }
+
+    private readAppointment(): void {
+        const unread = !this.client.consultantReadTime;
         if (unread) {
             appointmentService.recordRead(this.client.id).then((_) => {
                 const updatedClient = {...this.client};
                 updatedClient.consultantReadTime = new Date().toString();
-                this.updateMyAppointment(updatedClient);
+                this.updateMyAppointmentList(updatedClient);
             });
         };
-        this.isEdit = false;
-        this.clearAppointmentIdFromMsg();
     }
 
     private clearAppointmentIdFromMsg() {
@@ -349,7 +360,7 @@
         this.memo = this.memoInfo.content;
     }
 
-      get newAppointment(): boolean {
+    get newAppointment(): boolean {
       return !this.client.consultantViewTime
             && this.client.communicateStatus === 'reserved';
     }

--
Gitblit v1.8.0