新增查询条件

This commit is contained in:
Qi 2025-06-05 16:11:00 +08:00
parent 3d7b36df1c
commit 90f3ef6e4d
1 changed files with 21 additions and 0 deletions

View File

@ -288,6 +288,11 @@ export const searchFormSchema: FormSchema[] = [
field: 'phone', field: 'phone',
component: 'Input', component: 'Input',
}, },
{
label: '用户专业ID',
field: 'userMajorId',
component: 'Input',
},
{ {
label: '所属分组', label: '所属分组',
component: 'Select', component: 'Select',
@ -311,6 +316,22 @@ export const searchFormSchema: FormSchema[] = [
filterOption: (input, option) => option.label.toLowerCase().includes(input.toLowerCase()), filterOption: (input, option) => option.label.toLowerCase().includes(input.toLowerCase()),
}, },
}, },
{
label: '是否住宿',
field: 'dormitoryStatus',
component: 'Select',
componentProps: {
options: [
{ label: '是', value: 1 },
{ label: '否', value: 0 },
],
},
},
{
label: '车辆信息',
field: 'carNumber',
component: 'Input',
},
]; ];
//表单数据 //表单数据
export const formSchema: FormSchema[] = [ export const formSchema: FormSchema[] = [