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

export const step1Schemas: FormSchema[] = [
  {
    field: 'name',
    label: '上传图片',
    component: 'Input',
    slot: 'imageSelect',
  },
  {
    field: 'name',
    label: '配置名称',
    required: true,
    component: 'Input',
    componentProps: {
      maxLength: 255,
      placeholder: '请输入配置名称',
    },
  },
  //规则链(string)
  {
    field: 'defaultRuleChainId',
    label: '规则链',
    component: 'ApiSelect',
    componentProps: {
      api: async () => {
        const data = await deviceConfigGetRuleChain();
        const returnData = data.map((m) => {
          return {
            getValueField: m.name,
            getKeyField: m.id.id,
          };
        });
        return returnData;
      },
      labelField: 'getValueField',
      valueField: 'getKeyField',
      immediate: true,
    },
  },
  {
    field: 'defaultQueueName',
    label: '处理队列',
    component: 'ApiSelect',
    // componentProps: {
    //   api: async () => {
    //     const data = await findDictItemByCode({ dictCode: 'queen_execute_sequence' });
    //     const returnData = data.map((m) => {
    //       return {
    //         getLabelField: m.itemText,
    //         getValueField: m.itemValue,
    //       };
    //     });
    //     return returnData;
    //   },
    //   labelField: 'getLabelField',
    //   valueField: 'getValueField',
    //   immediate: true,
    // },
    componentProps: {
      api: findDictItemByCode,
      params: {
        dictCode: 'queen_execute_sequence',
      },
      labelField: 'itemText',
      valueField: 'itemValue',
      resultField: 'items',
    },
  },

  {
    label: '描述',
    field: 'description',
    component: 'InputTextArea',
    componentProps: {
      maxLength: 255,
      placeholder: '请输入描述',
    },
  },
];

export const step2Schemas: FormSchema[] = [
  {
    field: 'transportType',
    component: 'Select',
    label: '传输方式',
    defaultValue: 'DEFAULT',
    componentProps: {
      options: [
        { label: 'DEFAULT', value: 'DEFAULT' },
        { label: 'MQTT', value: 'MQTT' },
        { label: 'TCP', value: 'TCP' },
        { label: 'CoAP', value: 'CoAP' },
        { label: 'LWM2M', value: 'LWM2M' },
        { label: 'SNMP', value: 'SNMP' },
      ],
    },
  },
];

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

export const step3ViewHighSetting: FormSchema[] = [
  {
    field: 'propagate',
    component: 'Checkbox',
    label: '传递报警',
  },
  {
    field: 'propagateRelationTypes',
    component: 'Input',
    label: '关联类型',
    colProps: {
      span: 11,
    },
    componentProps: {
      maxLength: 255,
      placeholder: '请输入关联类型',
    },
  },
];

export const step3HighSetting: FormSchema[] = [
  {
    field: 'propagate',
    component: 'Checkbox',
    label: '',
    slot: 'checkBox',
  },
  {
    field: 'propagateRelationTypes',
    component: 'Input',
    label: '关联类型',
    colProps: {
      span: 11,
    },
    componentProps: {
      maxLength: 255,
      placeholder: '请输入关联类型',
    },
    ifShow: ({ values }) => !!values.propagate,
  },
];

export const isWhereType = ref(null);

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

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

export const dashboardFormScheme: FormSchema[] = [
  {
    field: 'dashboardId',
    component: 'Select',
    label: 'Mobile :',
    colProps: {
      span: 17,
    },
    componentProps: {
      placeholder: '请选择Mobile dashboard',
      options: [{ label: 'DASHBOARD', value: 'DASHBOARD' }],
    },
  },
];

export const alertContactsSchemas: FormSchema[] = [
  {
    field: 'alarmContactId',
    label: '告警通知联系人',
    component: 'ApiSelect',
    componentProps: {
      placeholder: '请选择告警通知联系人',
      api: alarmContactGetPage,
      labelField: 'username',
      valueField: 'id',
      resultField: 'items',
    },
  },
  {
    field: 'messageMode',
    label: '告警通知方式',
    component: 'ApiSelect',
    componentProps: {
      placeholder: '请选择告警通知方式',
      api: findDictItemByCode,
      params: {
        dictCode: 'message_type',
      },
      labelField: 'itemText',
      valueField: 'itemValue',
    },
  },
];

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