config.ts
2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import { BasicColumn, BasicTableProps, FormSchema } from '/@/components/Table';
import moment from 'moment';
import { h } from 'vue';
import { Tag } from 'ant-design-vue';
import { DataTypeNameEnum, ExecuteWayNameEnum } from '../config/enum';
// 表格配置
export const columns: BasicColumn[] = [
  {
    title: '配置名称',
    dataIndex: 'reportConfigName',
    width: 80,
  },
  {
    title: '所属组织',
    dataIndex: 'organizationName',
    width: 120,
  },
  {
    title: '数据类型',
    dataIndex: 'dataType',
    width: 120,
    format: (_text: string, record: Recordable) => {
      return record.dataCompare === 0 ? DataTypeNameEnum.ORIGINAL : DataTypeNameEnum.AGG;
    },
  },
  {
    title: '执行方式',
    dataIndex: 'executeWay',
    width: 120,
    format: (_text: string, record: Recordable) => {
      return record.executeWay === 0
        ? ExecuteWayNameEnum.EXECUTEWAY_IMMEDIATE
        : ExecuteWayNameEnum.EXECUTEWAY_SCHEDULED;
    },
  },
  {
    title: '执行状态',
    dataIndex: 'executeStatus',
    width: 120,
    customRender: ({ record }) => {
      const status = record.executeStatus;
      const color = status == 1 ? 'green' : status == 0 ? 'red' : 'blue';
      const text = status == 1 ? '成功' : status == 0 ? '失败' : '进行中';
      return h(Tag, { color: color }, () => text);
    },
  },
  {
    title: '执行日期',
    dataIndex: 'executeTime',
    width: 180,
  },
];
// 表格查询配置
export const searchFormSchema: FormSchema[] = [
  {
    field: 'reportConfigName',
    label: '配置名称',
    component: 'Input',
    colProps: { span: 6 },
    componentProps: {
      maxLength: 36,
      placeholder: '请输入配置名称',
    },
  },
  {
    field: 'executeStatus',
    label: '执行状态',
    component: 'Select',
    colProps: { span: 6 },
    componentProps: {
      options: [
        {
          label: '进行中',
          value: 2,
        },
        {
          label: '成功',
          value: 1,
        },
        {
          label: '失败',
          value: 0,
        },
      ],
      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 defaultTableAttribtes: BasicTableProps = {
  title: '报表导出列表',
  columns,
  showIndexColumn: false,
  clickToRowSelect: false,
  formConfig: {
    labelWidth: 120,
    schemas: searchFormSchema,
    fieldMapToTime: [['sendTime', ['startTime', 'endTime'], 'x']],
  },
  useSearchForm: true,
  showTableSetting: true,
  bordered: true,
  rowKey: 'id',
  actionColumn: {
    width: 200,
    title: '操作',
    dataIndex: 'action',
    slots: { customRender: 'action' },
    fixed: 'right',
  },
};