| | |
| | | import { QuestionOption } from "../models/quickFilter.model"; |
| | | import { Seniority } from "../models/enum/seniority"; |
| | | import { QuestionOption } from "../models/quick-filter.model"; |
| | | |
| | | |
| | | export const questionList: QuestionOption[] = [ |
| | | { |
| | |
| | | ], |
| | | type: 'radio' |
| | | }, |
| | | // { TODO:隱藏滿意度 |
| | | // { |
| | | // name: 'avgScore', |
| | | // title: '顧問滿意度', |
| | | // detail: [], |
| | |
| | | ], |
| | | 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' |
| | | // } |
| | | ]; |
| | | ]; |