config.ts 890 Bytes
import { FormSchema } from '/@/components/Table';
import { ref } from 'vue';
export const isWhereType = ref(null);

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