create.config.ts
393 Bytes
import { AlarmNoticeFieldsEnum, AlarmNoticeFieldsNameEnum } from '../../../enum/formField/external';
import { FormSchema } from '/@/components/Form';
export const formSchemas: FormSchema[] = [
{
field: AlarmNoticeFieldsEnum.CONFIGURATION,
component: 'JSONEditor',
label: AlarmNoticeFieldsNameEnum.CONFIGURATION,
valueField: 'value',
changeEvent: 'update:value',
},
];