From b4d6944076f1df6eedaae35c4c2a7072fe988e8a Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期二, 30 四月 2024 15:34:02 +0800 Subject: [PATCH] update: package-lock.json --- PAMapp/shared/const/quickFilter-questionList.ts | 18 +++++++++++++++--- 1 files changed, 15 insertions(+), 3 deletions(-) diff --git a/PAMapp/shared/const/quickFilter-questionList.ts b/PAMapp/shared/const/quickFilter-questionList.ts index ea35dca..2e62432 100644 --- a/PAMapp/shared/const/quickFilter-questionList.ts +++ b/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' // } -]; \ No newline at end of file +]; -- Gitblit v1.8.0