config.data.ts
2.47 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
/*
* @Author: fengtao 1400859700@qq.com
* @Date: 2022-10-12 09:29:11
* @LastEditors: fengtao 1400859700@qq.com
* @LastEditTime: 2022-10-13 17:28:24
* @FilePath: \yun-teng-iot-front\src\views\scriptmanage\converscript\config.data.ts
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
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: '名称',
colProps: { span: 24 },
required: true,
component: 'Input',
componentProps: {
maxLength: 255,
placeholder: '请输入脚本名称',
},
},
{
field: 'scriptContent',
label: '脚本内容',
required: true,
component: 'Input',
slot: 'scriptContent',
colProps: { span: 24 },
},
{
field: 'remark',
label: '备注',
colProps: { span: 24 },
component: 'InputTextArea',
componentProps: {
rows: 6,
maxLength: 255,
placeholder: '请输入备注',
},
},
];