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

// 表格配置
export const columns: BasicColumn[] = [
  {
    title: '脚本名称',
    dataIndex: 'reportConfigName',
    width: 80,
  },
  {
    title: '脚本状态',
    dataIndex: 'organizationName',
    width: 120,
    customRender: ({ record }) => {
      const status = record.organizationName;
      const color = status == 1 ? 'green' : 'red';
      const text = status == 1 ? '启用' : '禁用';
      return h(Tag, { color: color }, () => text);
    },
  },
  {
    title: '脚本内容',
    dataIndex: 'dataType',
    width: 120,
    slots: { customRender: 'dataType' },
  },
  {
    title: '描述',
    dataIndex: 'executeWay',
    width: 120,
  },
  {
    title: '创建时间',
    dataIndex: 'executeTime',
    width: 180,
  },
];

// 查询配置
export const searchFormSchema: FormSchema[] = [
  {
    field: 'reportConfigName',
    label: '脚本名称',
    component: 'Input',
    colProps: { span: 6 },
    componentProps: {
      maxLength: 36,
      placeholder: '请输入配置名称',
    },
  },
  {
    field: 'sendTime',
    label: '创建时间',
    component: 'RangePicker',
    componentProps: {
      showTime: {
        defaultValue: [moment('00:00:00', 'HH:mm:ss'), moment('23:59:59', 'HH:mm:ss')],
      },
    },
    colProps: { span: 6 },
  },
];

// 新增编辑配置
export const formSchema: FormSchema[] = [
  {
    field: 'name',
    label: '',
    required: true,
    component: 'Input',
    slot: 'scriptName',
    colProps: { span: 24 },
  },
  {
    field: 'scriptContent',
    label: '脚本内容',
    required: true,
    component: 'Input',
    slot: 'scriptContent',
    colProps: { span: 24 },
  },
  {
    field: 'remark',
    label: '',
    required: true,
    component: 'Input',
    slot: 'scriptRemark',
    colProps: { span: 24 },
  },
];