Commit c9123f756aac96ed93b765baed492fa1fa5685c2
Merge branch 'fix/video-channel-add-form' into 'main_dev'
fix: 视频通道添加表单状态筛选 See merge request yunteng/thingskit-front!1244
Showing
1 changed file
with
12 additions
and
0 deletions
... | ... | @@ -83,4 +83,16 @@ export const searchFormSchema: FormSchema[] | any = [ |
83 | 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 | ]; | ... | ... |