From 34b08e1c461f5e08675fcff95525956d7c4bef11 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期四, 17 二月 2022 11:38:48 +0800 Subject: [PATCH] Merge branch 'Phase3' into pollex-dev --- PAMapp/shared/const/quickFilter-questionList.ts | 28 ++++++++++++++++++++-------- 1 files changed, 20 insertions(+), 8 deletions(-) diff --git a/PAMapp/shared/const/quickFilter-questionList.ts b/PAMapp/shared/const/quickFilter-questionList.ts index 42af218..3539755 100644 --- a/PAMapp/shared/const/quickFilter-questionList.ts +++ b/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' // } -]; \ No newline at end of file +]; -- Gitblit v1.8.0