保誠-保戶業務員媒合平台
Mila
2021-11-17 e143ee9f40fe269f57c0269f548d459c196f3c89
update 我的顧問清單/預約清單: 需求單連絡時段格式
修改3個檔案
6 ■■■■ 已變更過的檔案
PAMapp/components/Client/ClientCard.vue 2 ●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程
PAMapp/components/Consultant/ConsultantCard.vue 2 ●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程
PAMapp/pages/questionnaire/_agentNo.vue 2 ●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程
PAMapp/components/Client/ClientCard.vue
@@ -98,7 +98,7 @@
    get hopeContactTime() {
        const contactList = this.client.hopeContactTime.split("'").map(item => item.slice(0, item.length));
        return contactList.filter(item => !!item)
        return contactList.filter(item => !!item && item !== ",")
    }
    get time() {
PAMapp/components/Consultant/ConsultantCard.vue
@@ -139,7 +139,7 @@
    get hopeContactTime() {
        const contactList = this.appointmentDetail.hopeContactTime
            .split("'").map(item => item.slice(0, item.length));
        return contactList.filter(item => !!item)
        return contactList.filter(item => !!item && item !== ",")
    }
    reserveCommunication() {
        const contactStatus = this.agentInfo.contactStatus;
PAMapp/pages/questionnaire/_agentNo.vue
@@ -242,7 +242,7 @@
                    })
                    return initScheduleList.map(i => {
                        return `'${i.selectWeekOptions},${i.selectTimesOptions}'`}
                        return `'${i.selectWeekOptions}、${i.selectTimesOptions}'`}
                    ).toString()
                }