config.ts 2.49 KB
import { BasicColumn, FormSchema } from '/@/components/Table';
import { h } from 'vue';
import { Tag } from 'ant-design-vue';

export const columns: BasicColumn[] = [
  {
    title: '数据流转名称',
    dataIndex: 'name',
    width: 200,
  },
  {
    title: '途径',
    dataIndex: 'type',
    width: 200,
    customRender: ({ record }) => {
      const status = record.type;
      const enable =
        status === 'org.thingsboard.rule.engine.kafka.TbKafkaNode'
          ? 'KafKa'
          : record.type === 'org.thingsboard.rule.engine.mqtt.TbMqttNode'
          ? 'MQTT'
          : record.type === 'org.thingsboard.rule.engine.rabbitmq.TbRabbitMqNode'
          ? 'RabbitMQ'
          : 'REST_API';
      const color =
        enable == 'KafKa'
          ? '#0099FF'
          : enable == 'MQTT'
          ? '#7C7CC9'
          : enable == 'RabbitMQ'
          ? '#E8A15E'
          : '#81B1AB';
      const text =
        enable == 'KafKa'
          ? 'KafKa'
          : enable == 'MQTT'
          ? 'MQTT'
          : enable == 'RabbitMQ'
          ? 'RabbitMQ'
          : 'REST_API';
      return h(Tag, { color: color }, () => text);
    },

    format: (_text: string, record: Recordable) => {
      return record.type === 'org.thingsboard.rule.engine.kafka.TbKafkaNode'
        ? 'KafKa'
        : record.type === 'org.thingsboard.rule.engine.mqtt.TbMqttNode'
        ? 'MQTT'
        : record.type === 'org.thingsboard.rule.engine.rabbitmq.TbRabbitMqNode'
        ? 'RabbitMQ'
        : 'REST_API';
    },
  },
  {
    title: '状态',
    dataIndex: 'status',
    width: 120,
    customRender: ({ record }) => {
      const status = record.status;
      const enable = ~~status === 1;
      const color = enable ? '#2aae67' : '#eb846f';
      const text = enable ? '启用' : '禁用';
      return h(Tag, { color: color }, () => text);
    },
  },
  {
    title: '描述',
    dataIndex: 'remark',
    width: 200,
  },
  {
    title: '创建时间',
    dataIndex: 'createTime',
    width: 180,
  },
];

export const searchFormSchema: FormSchema[] = [
  {
    field: 'name',
    label: '名称',
    component: 'Input',
    colProps: { span: 6 },
    componentProps: {
      maxLength: 36,
      placeholder: '请输入名称',
    },
  },
  {
    field: 'status',
    label: '状态',
    component: 'Select',
    componentProps: {
      placeholder: '请选择状态',
      options: [
        { label: '已启用', value: '1' },
        { label: '未启用', value: '0' },
      ],
    },
    colProps: { span: 6 },
  },
];