Update: 更新諮詢方式相關 API 使用方式
| | |
| | | <p>性別:<span>{{gender}}</span></p> |
| | | <p>年齡:<span>{{client.age | toAgeLabel }}</span></p> |
| | | <p>職業:<span>{{client.job}}</span></p> |
| | | <p>諮詢方式:<span>{{client.consultationMethod }}</span></p> |
| | | <p>諮詢方式:<span>{{client.consultationMethod | toConsulType }}</span></p> |
| | | <p>需求:<span>{{ client.requirement ? client.requirement.split(',').join('、') : '--' }}</span></p> |
| | | <p v-for="(item, index) in hopeContactTime" |
| | | :key="index" |
| | |
| | | <p>性別:{{gender}}</p> |
| | | <p>年齡:{{appointmentDetail.age | toAgeLabel }}</p> |
| | | <p>職業:{{appointmentDetail.job}}</p> |
| | | <p>諮詢方式:{{appointmentDetail.consultationMethod }}</p> |
| | | <p>諮詢方式:{{appointmentDetail.consultationMethod | toConsulType }}</p> |
| | | <p>需求:{{appointmentDetail.requirement ? appointmentDetail.requirement.split(',').join('、') : '--'}}</p> |
| | | <p |
| | | v-for="(item, index) in hopeContactTime" |
| | |
| | | <p>性別:{{gender}}</p> |
| | | <p>年齡:{{appointmentDetail.age | toAgeLabel }}</p> |
| | | <p>職業:{{appointmentDetail.job}}</p> |
| | | <p>諮詢方式:{{appointmentDetail.consultationMethod }}</p> |
| | | <p>諮詢方式:{{appointmentDetail.consultationMethod | toConsulType }}</p> |
| | | <p>需求:{{ appointmentDetail.requirement ? appointmentDetail.requirement.split(',').join('、') : '--'}}</p> |
| | | <p |
| | | v-for="(item, index) in hopeContactTime" |
| | |
| | | }; |
| | | |
| | | const consultantTypeLabel = { |
| | | 'ONLINE': '線上', |
| | | 'OFFLINE': '線下', |
| | | 'online': '線上', |
| | | 'offline': '線下', |
| | | }; |
| | | |
| | | return consultantTypeLabel[value]; |
| | |
| | | job : string; |
| | | phone : string; |
| | | requirement : string; |
| | | consultationMethod: string; |
| | | } |
| | | |
| | | export interface EditAppointmentParams { |
| | |
| | | otherRequirement: null; |
| | | phone : string; |
| | | requirement : string; |
| | | consultationMethod: string; |
| | | } |
| | | |
| | | export interface AppointmentRequests { |