保誠-保戶業務員媒合平台
Tomas
2022-01-27 3041bdc8daee6f17ab790bbab0bfdbf22f244573
PAMapp/shared/const/quickFilter-questionList.ts
@@ -1,4 +1,6 @@
import { QuestionOption } from "~/shared/models/quick-filter.model";
import { Seniority } from "../models/enum/seniority";
import { QuestionOption } from "../models/quick-filter.model";
export const questionList: QuestionOption[] = [
    {
@@ -10,12 +12,12 @@
        ],
        type: 'radio'
    },
    // { TODO:隱藏滿意度
    //     name: 'avgScore',
    //     title: '顧問滿意度',
    //     detail: [],
    //     type: ''
    // },
    {
        name: 'avgScore',
        title: '顧問滿意度',
        detail: [],
        type: ''
    },
    {
        name: 'communicationStyles',
        title: '溝通風格',
@@ -27,10 +29,20 @@
        ],
        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'
    // }
];
];