新增查询条件
This commit is contained in:
parent
3d7b36df1c
commit
90f3ef6e4d
|
@ -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[] = [
|
||||||
|
|
Loading…
Reference in New Issue