Commit 80bde86baf89fca1dae6ac6063ca7c09a2303230

Authored by loveumiko
1 parent 942a415a

fix: 视频通道添加状体筛选

... ... @@ -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 ];
... ...