From 34b08e1c461f5e08675fcff95525956d7c4bef11 Mon Sep 17 00:00:00 2001
From: wayne <wayne8692wayne8692@gmail.com>
Date: 星期四, 17 二月 2022 11:38:48 +0800
Subject: [PATCH] Merge branch 'Phase3' into pollex-dev

---
 PAMapp/pages/myConsultantList.vue |  117 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 117 insertions(+), 0 deletions(-)

diff --git a/PAMapp/pages/myConsultantList.vue b/PAMapp/pages/myConsultantList.vue
new file mode 100644
index 0000000..33caf53
--- /dev/null
+++ b/PAMapp/pages/myConsultantList.vue
@@ -0,0 +1,117 @@
+<template>
+    <div>
+        <div class="pam-cus-tabs mb-30">
+            <div
+                class="cus-tab-item"
+                :class="{'is-active': activeTabName === 'consultantList'}"
+                @click="clickTab('consultantList')"
+            >憿批��
+                <span class="p">({{consultantList.length}})</span>
+            </div>
+            <div
+                class="cus-tab-item"
+                :class="{'is-active': activeTabName === 'contactedList'}"
+                @click="clickTab('contactedList')"
+            >撌脰蝯�
+                <span class="p">({{contactedList.length}})</span>
+            </div>
+        </div>
+
+        <NuxtChild
+            :contactedList="contactedList"
+            :consultantList="consultantList"
+        ></NuxtChild>
+
+    </div>
+</template>
+
+<script lang='ts'>
+import { Vue, Component, Watch, State, Action } from 'nuxt-property-decorator';
+
+import authService from '~/shared/services/auth.service';
+import { Consultant, ConsultantWithAppointmentId } from '~/shared/models/consultant.model';
+
+@Component
+export default class myConsultantList extends Vue {
+
+    @State('myConsultantList')
+    myConsultantList!: Consultant[];
+
+    @Action
+    storeConsultantList!: any;
+
+    activeTabName : string                        = 'consultantList';
+    consultantList: Consultant[]                  = [];
+    contactedList : ConsultantWithAppointmentId[] = [];
+
+    //////////////////////////////////////////////////////////////////////
+
+    beforeRouteEnter(to: any, from: any, next: any) {
+      next((vm: any) => {
+        if (to.name === 'myConsultantList') {
+            vm.$router.push('myConsultantList/consultantList');
+          return;
+        }
+      })
+    }
+
+    mounted() {
+      this.storeConsultantList();
+
+      if (this.$route.name) {
+        this.activeTabName = this.$route.name.split('-')[1]
+      }
+    }
+
+    //////////////////////////////////////////////////////////////////////
+
+    @Watch('myConsultantList')
+    onMyConsultantListChange() {
+        this.setList();
+    }
+
+    private setList() {
+    // reset contacted list
+      this.contactedList = [];
+
+    // format consultant list
+      this.consultantList = (this.myConsultantList || [])
+        .filter(item => item.contactStatus !== 'contacted')
+        .map((item) => ({ ...item, formatDate: new Date(item.updateTime || item.createTime)}))
+        .sort((preItem, nextItem) => +nextItem.formatDate - +preItem.formatDate );
+
+      if (authService.isUserLogin()) {
+        this.myConsultantList.filter((consultant) => consultant.appointments!.length)
+          .forEach((consultant) => {
+            consultant.appointments!.forEach((appointment) => {
+              const consultantWithAppointmentId: ConsultantWithAppointmentId = {
+                ...consultant,
+                appointmentId: appointment.id,
+                appointmentDate: appointment.appointmentDate,
+                appointmentScore: appointment.satisfactionScore,
+                appointmentStatus: appointment.communicateStatus,
+                appointmentLastModifiedDate: appointment.lastModifiedDate
+              };
+              this.contactedList.push(consultantWithAppointmentId);
+            })
+          });
+
+        this.contactedList = this.contactedList
+          .filter((appointment) => appointment['appointmentStatus'] !== 'reserved')
+          .map((appointment) => ({ ...appointment, sortTime: new Date(appointment.appointmentLastModifiedDate)}))
+          .sort((preAppointment, nextAppointment) => +nextAppointment.sortTime - +preAppointment.sortTime);
+      }
+
+    }
+
+    //////////////////////////////////////////////////////////////////////
+
+    clickTab(path: string) {
+        this.activeTabName = path;
+        this.$router.push('/myConsultantList/' + this.activeTabName)
+    }
+
+
+}
+</script>
+

--
Gitblit v1.8.0