config.ts 321 Bytes
import { FormSchema } from '/@/components/Table';

export const formSchema: FormSchema[] = [
  {
    field: 'alarmDetails',
    label: '报警详细信息:',
    colProps: { span: 17 },
    component: 'Input',
    componentProps: {
      maxLength: 255,
      placeholder: '请输入报警详细信息',
    },
  },
];