config.data.ts 4.46 KB
import { BasicColumn } from '/@/components/Table';
import { FormSchema } from '/@/components/Table';
import {findDictItemByCode} from "/@/api/system/dict";
import {MessageEnum} from "/@/enums/messageEnum";
import {DeviceTypeEnum,DeviceState} from "/@/api/device/model/deviceModel";
export const columns: BasicColumn[] = [
  {
    title: '设备名称',
    dataIndex: 'name',
    width: 200,
  },
  {
    title: '设备类型',
    dataIndex: 'deviceType',
    width: 200,
    slots:{customRender:'deviceType'},
  },
  {
    title: '设备配置',
    dataIndex: 'deviceProfile.name',
    width: 180,
    slots: { customRender: 'deviceProfile' },
  },
  {
    title: '标签',
    dataIndex: 'label',
    width: 180
  },
  {
    title: '配置信息',
    dataIndex: 'deviceInfo',
    width: 180,
    slots: { customRender: 'config' },
  },
  {
    title: '状态',
    dataIndex: 'deviceState',
    width: 120,
    slots: { customRender: 'deviceState' },
  },

  {
    title: '最后连接时间',
    dataIndex: 'lastConnectTime',
    width: 180,
  },
  {
    title: '创建时间',
    dataIndex: 'createTime',
    width: 180,
  },
];

export const searchFormSchema: FormSchema[] = [
  {
    field: 'deviceType',
    label: '设备类型',
    component: 'Select',
    componentProps: {
      options: [
        { label: '网关设备', value: DeviceTypeEnum.GATEWAY },
        { label: '直连设备', value: DeviceTypeEnum.DIRECT_CONNECTION },
        { label: '网关子设备', value: DeviceTypeEnum.SENSOR },
      ],
    },
    colProps: { span: 4 },
  },
  {
    field: 'deviceState',
    label: '设备状态',
    component: 'Select',
    componentProps: {
      options: [
        { label: '待激活', value: DeviceState.INACTIVE },
        { label: '在线', value: DeviceState.ONLINE },
        { label: '离线', value: DeviceState.OFFLINE },
      ],
    },
    colProps: { span: 4 },
  },
  {
    field: 'name',
    label: '设备名称',
    component: 'Input',
    colProps: { span: 8 },
  },
];


export const isMessage = (type:string)=>{
  return type===MessageEnum.IS_SMS;
}
export const isEmail = (type:string)=>{
  return type===MessageEnum.IS_EMAIL;
}

export const formSchema: FormSchema[] = [
  {
    field: 'configName',
    label: '配置名称',
    required: true,
    component:'Input'
  },
  {
    field: 'messageType',
    label: '消息类型',
    required: true,
    component: 'ApiSelect',
    componentProps: {
      api:findDictItemByCode,
      params:{
        dictCode:"message_type"
      },
      labelField:'itemText',
      valueField:'itemValue',
    },
  },
  {
    field: 'platformType',
    label: '平台类型',
    required: true,
    component: 'ApiSelect',
    componentProps: {
      api:findDictItemByCode,
      params:{
        dictCode:"platform_type"
      },
      labelField:'itemText',
      valueField:'itemValue',
    },
    ifShow:({values}) => isMessage(Reflect.get(values,'messageType')),
  },
  {
    field: 'accessKeyId',
    label: 'accessKeyId',
    required: true,
    component:'Input',
    ifShow:({values}) => isMessage(Reflect.get(values,'messageType')),
  },
  {
    field: 'accessKeySecret',
    label: 'accessKeySecret',
    required: true,
    component:'Input',
    ifShow:({values}) => isMessage(Reflect.get(values,'messageType')),
  },
  {
    field: 'host',
    label: '服务器地址',
    defaultValue:'smtp.163.com',
    required: true,
    component:'Input',
    ifShow:({values}) => isEmail(Reflect.get(values,'messageType')),
  },
  {
    field: 'port',
    label: '端口',
    defaultValue: 25,
    required: true,
    component:'InputNumber',
    ifShow:({values}) => isEmail(Reflect.get(values,'messageType')),
  },
  {
    field: 'username',
    label: '用户名',
    required: true,
    component:'Input',
    ifShow:({values}) => isEmail(Reflect.get(values,'messageType')),
  },
  {
    field: 'password',
    label: '密码',
    required: true,
    component:'InputPassword',
    ifShow:({values}) => isEmail(Reflect.get(values,'messageType')),
  },
  {
    field: 'config',
    label: '消息配置',
    component:'Input',
    show:false,
  },
  {
    field: 'id',
    label: '主键',
    component:'Input',
    show:false,
  },
  {
    field: 'status',
    label: '状态',
    component: 'RadioButtonGroup',
    defaultValue: 0,
    componentProps: {
      options: [
        { label: '启用', value: 1 },
        { label: '停用', value: 0 },
      ],
    },
  },
  {
    label: '备注',
    field: 'remark',
    component: 'InputTextArea',
  }
];