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/pages/myAppointmentList/closedList.vue | 16 +++++++++------- 1 files changed, 9 insertions(+), 7 deletions(-) diff --git a/PAMapp/pages/myAppointmentList/closedList.vue b/PAMapp/pages/myAppointmentList/closedList.vue index 9d7957f..b050cab 100644 --- a/PAMapp/pages/myAppointmentList/closedList.vue +++ b/PAMapp/pages/myAppointmentList/closedList.vue @@ -34,7 +34,7 @@ </template> <script lang="ts"> -import { Vue, Component, Watch, State, namespace } from 'nuxt-property-decorator'; +import { Vue, Component, Watch, namespace } from 'nuxt-property-decorator'; import { Appointment } from '~/shared/models/appointment.model'; import { ContactStatus } from '~/shared/models/enum/contact-status'; @@ -52,14 +52,16 @@ @localStorage.Getter currentAppointmentIdFromMsg!: string; - closedItemSum = 0; - closedList: Appointment[] = []; contactStatus= ContactStatus; - currentPage : number = 1; - doneItemSum = 0; + + closedItemSum = 0; + currentPage = 1; + doneItemSum = 0; + itemSum = 0; + keyWord = ''; + + closedList: Appointment[] = []; filterList : Appointment[] = []; - itemSum = 0; - keyWord : string = ''; pageList : Appointment[] = []; selectedClosedCategory: 'all' | 'done' | 'closed' = 'all'; -- Gitblit v1.8.0