From 9ece54e8b526dc70b1a50014ee2c38e42bb403e4 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期二, 25 一月 2022 12:25:43 +0800 Subject: [PATCH] update#134625: [ 客戶-我的顧問清單 ] 客戶安琪拉已預約熊蔡顧問,熊蔡顧問發送約訪通知,進入約訪中階段 , 但客戶安琪拉的顧問清單中 , 顧問熊蔡的狀態為「進行預約」 --- PAMapp/pages/index.vue | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/PAMapp/pages/index.vue b/PAMapp/pages/index.vue index 1aec34c..e424a82 100644 --- a/PAMapp/pages/index.vue +++ b/PAMapp/pages/index.vue @@ -79,7 +79,7 @@ <PopUpFrame :isOpen.sync="isShowReAppointmentDialog" - @closePopUp="removeUrlQueryParameter('notContactAppointmentId')" + @closePopUp="removeUrlQueryParameter('notContactAppointmentIdFromMsg')" > <div class="pam-dialog-review"> <div class="mt-30 text--middle" v-if="agentInfo"> @@ -270,7 +270,6 @@ @Watch('myConsultantList') onMyConsultantListChange() { 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); @@ -338,7 +337,7 @@ this.storeConsultantList(); this.storageStrickQueryItem({ requirements: requirements }); this.storageClearNotContactAppointmentIdFromMsg(); - this.removeUrlQueryParameter('notContactAppointmentId'); + this.removeUrlQueryParameter('notContactAppointmentIdFromMsg'); this.$router.push('/recommendConsultant'); }); } @@ -347,7 +346,7 @@ appointmentService.cancelAppointment(this.appointmentDetail.id).then(() => { this.storeConsultantList(); this.storageClearNotContactAppointmentIdFromMsg(); - this.removeUrlQueryParameter('notContactAppointmentId'); + this.removeUrlQueryParameter('notContactAppointmentIdFromMsg'); this.$router.push(''); }); } -- Gitblit v1.8.0