保誠-保戶業務員媒合平台
Mila
2021-12-06 921e56017c29cf97c0ffe90c879243d5fd79a19b
fixed TODO#131490 [預約清單] 資料排序
修改1個檔案
2 ■■■ 已變更過的檔案
PAMapp/pages/myAppointmentList/appointmentList.vue 2 ●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程
PAMapp/pages/myAppointmentList/appointmentList.vue
@@ -39,7 +39,7 @@
    onMyAppointmentListChange() {
        const unreadList = this.myAppointmentList
            .filter(item => item.communicateStatus !== 'contacted' && !item.consultantReadTime)
            .sort((a, b) => a.consultantViewTime > b.consultantViewTime ? 1 : -1);
            .sort((a, b) => a.appointmentDate > b.appointmentDate ? -1 : 1);
        const readList = this.myAppointmentList
            .filter(item => item.communicateStatus !== 'contacted' && item.consultantReadTime)