1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| export const appointmentFailReasonList = [
| {
| 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'
| },
| ];
|
|