config.data.ts
4.18 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import { BasicColumn, FormSchema } from '/@/components/Table';
import moment from 'moment';
import { h } from 'vue';
import { Tag } from 'ant-design-vue';
import { findDictItemByCode } from '/@/api/system/dict';
// 表格配置
export const columns: BasicColumn[] = [
{
title: '脚本名称',
dataIndex: 'name',
width: 80,
},
{
title: '脚本状态',
dataIndex: 'status',
width: 120,
customRender: ({ record }) => {
const status = record.status;
const color = status == 1 ? 'green' : 'red';
const text = status == 1 ? '启用' : '禁用';
return h(Tag, { color: color }, () => text);
},
},
{
title: '脚本内容',
dataIndex: 'convertJs',
width: 120,
slots: { customRender: 'convertJs' },
},
{
title: '描述',
dataIndex: 'description',
width: 120,
},
{
title: '创建时间',
dataIndex: 'createTime',
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: 'unit',
label: '上报数据类型',
component: 'ApiSelect',
colProps: {
span: 23,
},
defaultValue: 'HEX',
componentProps: {
placeholder: '请上报数据类型',
api: findDictItemByCode,
params: {
dictCode: 'report_data_type',
},
labelField: 'itemText',
valueField: 'itemValue',
},
},
{
field: 'remark',
label: '',
required: true,
component: 'Input',
slot: 'scriptRemark',
colProps: { span: 24 },
},
];
export const mockData: any = async () => {
const res = await [
{
reportConfigName: '风机转换',
organizationName: 1,
dataType: 'function',
executeWay: '风机转换脚本使用js',
executeTime: '2022-10-20 10:24:22',
},
{
reportConfigName: '水电转换',
organizationName: 1,
dataType: 'function',
executeWay: '水电转换脚本使用js',
executeTime: '2022-10-20 10:24:22',
},
{
reportConfigName: '摄像头转换',
organizationName: 1,
dataType: 'function',
executeWay: '摄像头转换脚本使用js',
executeTime: '2022-10-20 10:24:22',
},
{
reportConfigName: '变压器转换',
organizationName: 1,
dataType: 'function',
executeWay: '变压器转换脚本使用js',
executeTime: '2022-10-20 10:24:22',
},
{
reportConfigName: '设备状态转换',
organizationName: 1,
dataType: 'function',
executeWay: '设备状态转换脚本使用js',
executeTime: '2022-10-20 10:24:22',
},
{
reportConfigName: '电流转换',
organizationName: 1,
dataType: 'function',
executeWay: '电流转换脚本使用js',
executeTime: '2022-10-20 10:24:22',
},
{
reportConfigName: '电压转换',
organizationName: 1,
dataType: 'function',
executeWay: '电压转换脚本使用js',
executeTime: '2022-10-20 10:24:22',
},
{
reportConfigName: '传感器转换',
organizationName: 1,
dataType: 'function',
executeWay: '传感器转换脚本使用js',
executeTime: '2022-10-20 10:24:22',
},
{
reportConfigName: '物模型转换',
organizationName: 1,
dataType: 'function',
executeWay: '物模型转换脚本使用js',
executeTime: '2022-10-20 10:24:22',
},
];
return res;
};