保誠-保戶業務員媒合平台
PAMapp/pages/myAppointmentList/contactedList.vue
@@ -5,6 +5,7 @@
            placeholder="請輸入關鍵字"
            class="mb-30 pam-clientReserved-input"
            v-model="keyWord"
            @keyup.enter.native="search"
        >
            <i
                slot="suffix"
@@ -19,7 +20,7 @@
        ></ClientList>
        <UiPagination
            :totalList="contactedList"
            :totalList="filterList"
            @changePage="changePage"
        ></UiPagination>
    </div>
@@ -42,12 +43,11 @@
    onMyAppointmentListChange() {
        this.contactedList = (this.myAppointmentList || [])
            .filter(item => item.communicateStatus === 'contacted')
            .sort((a, b) => a.appointmentDate > b.appointmentDate ? -1 : 1);
            .sort((a, b) => a.contactTime > b.contactTime ? -1 : 1);
        this.filterList = this.contactedList;
    }
    mounted() {
        console.log('ClientContactedList mounted');
        this.onMyAppointmentListChange();
    }