config.data.ts
2.33 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
import { BasicColumn, FormSchema } from '/@/components/Table';
import moment from 'moment';
import { h } from 'vue';
// 表格配置
export const columns: BasicColumn[] = [
{
title: '脚本名称',
dataIndex: 'name',
width: 80,
},
{
title: '脚本状态',
dataIndex: 'status',
width: 120,
slots: { customRender: 'status' },
},
{
title: '脚本内容',
dataIndex: 'convertJs',
width: 120,
slots: { customRender: 'convertJs' },
},
{
title: '备注',
dataIndex: 'description',
width: 120,
},
{
title: '创建时间',
dataIndex: 'createTime',
width: 180,
},
];
// 查询配置
export const searchFormSchema: FormSchema[] = [
{
field: 'name',
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 defaultTitle = h('div', { style: 'background:#404040' }, [
h('h3', { style: 'color:white' }, '示例'),
h('h3', { style: 'color:white' }, '输入参数:'),
h('h3', { style: 'color:white' }, '0103040150008D3BBB'),
h('h3', { style: 'color:white' }, [
h('h3', { style: 'color:white' }, '脚本内容:'),
h(
'h3',
{ style: 'color:white' },
"out.humidity = (parseInt('0x'+params.substr(6, 4))*0.1).toFixed(2);"
),
h(
'h3',
{ style: 'color:white' },
"out.temperature = (parseInt('0x'+params.substr(10, 4))*0.1).toFixed(2);"
),
h('h3', { style: 'color:white' }, '输出参数:'),
h('h3', { style: 'color:white' }, "{'humidity':'33.60','temperature':'14.10'}"),
]),
]);
export const defaultScriptTypeContent = {
TRANSPORT_TCP_UP:
'var attrData = {};var teleData = {};teleData.source= params;out.datas = teleData;out.telemetry =true;out.ackMsg = params;out.deviceName = "sensor";out.ts = Date.now();',
TRANSPORT_TCP_DOWN: 'out.datas = "";out.deviceName = "sensor";',
TRANSPORT_TCP_AUTH: 'out.password = params;out.success = params;',
};