Update: 調整諮詢方式 property name
| | |
| | | <p>性別:<span>{{gender}}</span></p> |
| | | <p>年齡:<span>{{client.age | toAgeLabel }}</span></p> |
| | | <p>職業:<span>{{client.job}}</span></p> |
| | | <p>諮詢方式:<span>{{client.consultantMode }}</span></p> |
| | | <p>諮詢方式:<span>{{client.consultationMethod }}</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.consultantMode }}</p> |
| | | <p>諮詢方式:{{appointmentDetail.consultationMethod }}</p> |
| | | <p>需求:{{appointmentDetail.requirement ? appointmentDetail.requirement.split(',').join('、') : '--'}}</p> |
| | | <p |
| | | v-for="(item, index) in hopeContactTime" |
| | |
| | | |
| | | <div class="client-detail-demand__demand-list mb-10"> |
| | | <div class="client-detail-demand__demand-list-label">諮詢<br />方式</div> |
| | | <div class="client-detail-demand__demand-list-content">{{ appointmentDetail.consultantMode | toConsulType }}</div> |
| | | <div class="client-detail-demand__demand-list-content">{{ appointmentDetail.consultationMethod | toConsulType }}</div> |
| | | </div> |
| | | |
| | | <div class="client-detail-demand__demand-list mb-10"> |
| | |
| | | <p>性別:{{gender}}</p> |
| | | <p>年齡:{{appointmentDetail.age | toAgeLabel }}</p> |
| | | <p>職業:{{appointmentDetail.job}}</p> |
| | | <p>諮詢方式:{{appointmentDetail.consultantMode }}</p> |
| | | <p>諮詢方式:{{appointmentDetail.consultationMethod }}</p> |
| | | <p>需求:{{ appointmentDetail.requirement ? appointmentDetail.requirement.split(',').join('、') : '--'}}</p> |
| | | <p |
| | | v-for="(item, index) in hopeContactTime" |
| | |
| | | </div> |
| | | </div> |
| | | </PopUpFrame> |
| | | |
| | | |
| | | <div class="video-container" |
| | | v-if="isShowFilmPlayer" |
| | | style="position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; justify-content: flex-end;" |
| | |
| | | phone : '', |
| | | requirement : '', |
| | | satisfactionScore : 0, |
| | | consultantMode : '' |
| | | consultationMethod : '' |
| | | }; |
| | | |
| | | agentInfo: Consultant = { |
| | |
| | | <div class="pam-paragraph"> |
| | | <div class="mdTxt">諮詢方式</div> |
| | | <SingleSelectBtn class="mt-10" |
| | | :singleSelected.sync="myRequest.consultantMode" |
| | | :options="consultantModeOptions" /> |
| | | :singleSelected.sync="myRequest.consultationMethod" |
| | | :options="consultationMethodOptions" /> |
| | | </div> |
| | | <div class="pam-paragraph"> |
| | | <div class="mdTxt">您的性別</div> |
| | |
| | | } |
| | | ]; |
| | | |
| | | consultantModeOptions = [ |
| | | consultationMethodOptions = [ |
| | | { |
| | | title: '線上', |
| | | label: 'ONLINE' |
| | | label: 'online' |
| | | }, |
| | | { |
| | | title: '線下', |
| | | label: 'OFFLINE' |
| | | label: 'offline' |
| | | } |
| | | ]; |
| | | |
| | |
| | | selectTimesOptions: [], |
| | | }], |
| | | agentNo: '', |
| | | consultantMode: '', |
| | | consultationMethod: '', |
| | | }; |
| | | |
| | | showDrawer= false; |
| | |
| | | phone : string; |
| | | requirement : string; |
| | | satisfactionScore : number; |
| | | consultantMode : string; |
| | | consultationMethod : string; |
| | | }; |
| | | |
| | | export interface AppointmentClosedInfo { |
| | |
| | | job : string; |
| | | phone : string; |
| | | requirement : string[]; |
| | | consultantMode : string; |
| | | consultationMethod : string; |
| | | } |
| | | export interface ContactTime { |
| | | selectTimesOptions: string[]; |