update: 顧問預約單結案 - 未成交原因列表
| | |
| | | <div style="display: flex" class="mt-10"> |
| | | |
| | | <input |
| | | v-if="appointmentCloseInfo.closedReason === 'other'" |
| | | v-if="appointmentCloseInfo.closedReason === 'other' |
| | | || appointmentCloseInfo.closedReason === 'no_suitable_commodity'" |
| | | class="appointment-client-detail-close__input" |
| | | v-model="appointmentCloseInfo.closedOtherReason" |
| | | placeholder="請輸入原因,限50字。" |
| | |
| | | |
| | | appointmentFailReason = [ |
| | | { |
| | | key: '無法聯繫客戶', |
| | | value: 'cannot_to_contact_customer' |
| | | }, |
| | | { |
| | | key: '單純諮詢', |
| | | value: 'only_consultation' |
| | | }, |
| | | { |
| | | key: '無合適商品', |
| | | value: 'no_suitable_commodity' |
| | | }, |
| | | { |
| | | key: '核保問題- 體況、財務、職業', |
| | | value: 'prohibited_factors' |
| | | }, |
| | | { |
| | | key: '經濟因素', |
| | | value: 'economy' |
| | | }, |
| | | { |
| | | key: '其他', |
| | | value: 'other' |
| | | } |
| | | }, |
| | | ]; |
| | | |
| | | closeAppointment(): void { |