保誠-保戶業務員媒合平台
PAMapp/components/Consultant/ConsultantCard.vue
@@ -45,7 +45,9 @@
                            @click="reserveCommunication"
                            :class="agentInfo.contactStatus + 'Btn'"
                        >{{ contactTxt }}</el-button>
                        <div class="updateTime" v-if="updateTime">{{updateTime | formatDate}}</div>
                        <div class="updateTime">
                            {{ displayTime | formatDate }}
                        </div>
                    </el-col>
                </el-row>
            </el-col>
@@ -176,6 +178,21 @@
                })
                .sort((preAppointment, nextAppointment) => +nextAppointment.sortDate - +preAppointment.sortDate)[0];
    }
    get displayTime(): string {
        let time = '';
        switch(this.agentInfo.contactStatus) {
            case 'reserved':
                time = this.agentInfo.updateTime
                break;
            case 'contacted':
                time = this.agentInfo.updateTime
                break;
            case 'picked':
                time = this.agentInfo.createTime
                break;
        }
        return time;
    }
    appointmentDetail: any = {
        age               : '',
@@ -218,10 +235,6 @@
            return '已預約';
        }
        return '進行預約';
    }
    get updateTime() {
        return isLogin() ? this.agentInfo.updateTime : '';
    }
    get hopeContactTime() {