保誠-保戶業務員媒合平台
wayne
2022-02-17 a3716f72066d25d745f4d5103ff23a553c3e102b
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { Seniority } from "../models/enum/seniority";
import { QuestionOption } from "../models/quick-filter.model";
 
 
export const questionList: QuestionOption[] = [
    {
        name: 'gender',
        title: '顧問性別',
        detail: [
            { name: '男性', value: 'male', className: 'btn_man'},
            { name: '女性', value: 'female', className: 'btn_woman'}
        ],
        type: 'radio'
    },
    {
        name: 'avgScore',
        title: '顧問滿意度',
        detail: [],
        type: ''
    },
    {
        name: 'communicationStyles',
        title: '溝通風格',
        detail: [
            { value: '謹慎務實', className: 'btn_owl'},
            { value: '明快主動', className: 'btn_tiger'},
            { value: '耐心傾聽', className: 'btn_koala'},
            { value: '健談風趣', className: 'btn_peacock'}
        ],
        type: 'checkbox'
    },
    {
        name: 'seniority',
        title: '顧問年資',
        detail: [
            { name: '不限', value: Seniority.UNLIMITED, subTitle: '年齡不是問題', className: 'btn_unlimited' },
            { name: '年輕', value: Seniority.YOUNG, subTitle: '給年輕人一個機會', className: 'btn_young' },
            { name: '資深', value: Seniority.SENIOR, subTitle: '薑是老的辣', className: 'btn_senior' }
        ],
        type: 'radio'
    }
    // {
    //     name: 'status',
    //     title: '上線狀態',
    //     detail: [],
    //     type: 'radio'
    // }
];