config.ts 788 Bytes
import { FormSchema } from '/@/components/Form';

export const formSchema: FormSchema[] = [
  {
    field: 'default',
    component: 'Select',
    label: '报警严重程度:',
    colProps: {
      span: 17,
    },
    componentProps() {
      return {
        placeholder: '请选择报警严重程度',
        options: [
          {
            value: 'CRITICAL',
            label: '危险',
          },
          {
            value: 'MAJOR',
            label: '重要',
          },
          {
            value: 'MINOR',
            label: '次要',
          },
          {
            value: 'WARNING',
            label: '警告',
          },
          {
            value: 'INDETERMINATE',
            label: '不确定',
          },
        ],
      };
    },
  },
];