From abfa3cc46bfd161b6a474610f37a5243a6ca34e8 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期三, 16 二月 2022 16:38:17 +0800 Subject: [PATCH] fix#135492: [ 客戶端 ] 已聯絡清單 : 第一筆預約單非最新一筆的預約單 --- PAMapp/pages/myConsultantList.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/PAMapp/pages/myConsultantList.vue b/PAMapp/pages/myConsultantList.vue index afa5d20..453f05e 100644 --- a/PAMapp/pages/myConsultantList.vue +++ b/PAMapp/pages/myConsultantList.vue @@ -98,7 +98,7 @@ this.contactedList = this.contactedList .filter((appointment) => appointment['appointmentStatus'] !== 'reserved') - .map((appointment) => ({ ...appointment, sortTime: new Date(appointment.appointmentDate)})) + .map((appointment) => ({ ...appointment, sortTime: new Date(appointment.updateTime)})) .sort((preAppointment, nextAppointment) => +nextAppointment.sortTime - +preAppointment.sortTime); } -- Gitblit v1.8.0