update 我的顧問清單/預約清單: 需求單連絡時段格式
| | |
| | | |
| | | 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() { |
| | |
| | | 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; |
| | |
| | | }) |
| | | |
| | | return initScheduleList.map(i => { |
| | | return `'${i.selectWeekOptions},${i.selectTimesOptions}'`} |
| | | return `'${i.selectWeekOptions}、${i.selectTimesOptions}'`} |
| | | ).toString() |
| | | } |
| | | |