data.ts 3.41 KB
import { FormSchema } from '/@/components/Form';
import { findDictItemByCode } from '/@/api/system/dict';
import { getOrganizationList } from '/@/api/system/system';
import { copyTransFun } from '/@/utils/fnUtils';
import { deviceConfigGetRuleChain } from '/@/api/device/deviceConfigApi';

export const step1Schemas: FormSchema[] = [
  {
    field: 'name',
    label: '配置名称',
    required: true,
    component: 'Input',
    componentProps: {
      maxLength: 30,
    },
  },
  {
    required: true,
    field: 'organizationId',
    label: '请选择组织',
    component: 'ApiTreeSelect',
    componentProps: {
      api: async () => {
        const data = await getOrganizationList();
        copyTransFun(data as any as any[]);
        return data;
      },
    },
  },
  {
    field: 'defaultRuleChainId',
    label: '请选择规则链',
    component: 'ApiSelect',
    componentProps: {
      api: deviceConfigGetRuleChain,
      labelField: 'name',
      valueField: 'type',
    },
  },
  {
    field: 'defaultConfig',
    label: '队列优先级',
    component: 'ApiSelect',
    componentProps: {
      api: findDictItemByCode,
      params: {
        dictCode: 'queen_execute_sequence',
      },
      labelField: 'itemText',
      valueField: 'itemValue',
    },
  },
  {
    label: '描述',
    field: 'description',
    component: 'InputTextArea',
  },
];

export const step2Schemas: FormSchema[] = [
  {
    field: 'transportType',
    component: 'Select',
    label: '传输方式',
    defaultValue: 'COAP',
    componentProps: {
      options: [
        { label: 'MQTT', value: 'MQTT' },
        { label: 'TCP', value: 'TCP' },
        { label: 'COAP', value: 'COAP' },
      ],
    },
  },
  {
    field: 'Topic',
    component: 'Input',
    label: 'Topic',
    componentProps: {
      placeholder: '请输入',
    },
  },
  {
    field: 'Payload',
    component: 'Select',
    label: 'Payload',
    componentProps: {
      options: [
        { label: 'JSON', value: 'DEFAULT' },
        { label: 'Protobuf', value: 'DEFAULT' },
      ],
    },
  },
];

export const step3Schemas: FormSchema[] = [
  {
    field: 'description',
    component: 'Input',
    label: '报警类型',
    required: true,
    componentProps: {
      placeholder: '请输入报警类型',
    },
  },
];

export const step3HighSetting: FormSchema[] = [
  {
    field: 'enabled',
    component: 'Checkbox',
    label: '',
    slot: 'checkBox',
  },
  {
    field: 'messageMode',
    component: 'Input',
    label: '关联类型',
    componentProps: {
      placeholder: '要传递的关联类型',
    },
    ifShow: ({ values }) => !!values.enabled,
  },
];

export const step3CreateAlarm: FormSchema[] = [
  {
    field: 'severity',
    component: 'Select',
    label: '严重程度',
    componentProps: {
      placeholder: '请选择严重程度',
      options: [
        {
          value: '1',
          label: '危险',
        },
        {
          value: '2',
          label: '重要',
        },
        {
          value: '3',
          label: '次要',
        },
        {
          value: '4',
          label: '警告',
        },
        {
          value: '5',
          label: '不确定',
        },
      ],
    },
  },
];

export const step3ClearAlarm: FormSchema[] = [
  // {
  //   field: 'associationType',
  //   component: 'Input',
  //   label: '关联类型',
  //   componentProps: {
  //     placeholder: '要传递的关联类型',
  //   },
  // },
];