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