Showing
1 changed file
with
12 additions
and
0 deletions
@@ -83,4 +83,16 @@ export const searchFormSchema: FormSchema[] | any = [ | @@ -83,4 +83,16 @@ export const searchFormSchema: FormSchema[] | any = [ | ||
83 | placeholder: '请输入国标编号', | 83 | placeholder: '请输入国标编号', |
84 | }, | 84 | }, |
85 | }, | 85 | }, |
86 | + { | ||
87 | + field: 'status', | ||
88 | + label: '状态', | ||
89 | + component: 'Select', | ||
90 | + colProps: { span: 6 }, | ||
91 | + componentProps: { | ||
92 | + options: [ | ||
93 | + { label: '在线', value: 'ONLINE' }, | ||
94 | + { label: '离线', value: 'OFFLINE' }, | ||
95 | + ], | ||
96 | + }, | ||
97 | + }, | ||
86 | ]; | 98 | ]; |