data.ts
3.16 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
import { FormSchema } from '/@/components/Form';
import { findDictItemByCode } from '/@/api/system/dict';
// import { getOrganizationList } from '/@/api/system/system';
// import { copyTransFun } from '/@/utils/fnUtils';
import { deviceConfigGetRuleChain } from '/@/api/device/deviceConfigApi';
export const step1Schemas: FormSchema[] = [
{
field: 'name',
label: '配置名称',
required: true,
component: 'Input',
componentProps: {
maxLength: 30,
},
},
//规则链(string)
{
field: 'defaultRuleChainId',
label: '请选择规则链',
component: 'ApiSelect',
componentProps: {
api: deviceConfigGetRuleChain,
labelField: 'name',
valueField: 'type',
resultField: '',
},
},
// {
// field: 'icon',
// component: 'Upload',
// label: '请上传图片',
// colProps: {
// span: 8,
// },
// componentProps: {
// // api: uploadApi,
// },
// },
{
field: 'defaultQueueName',
label: '处理队列',
component: 'ApiSelect',
componentProps: {
api: findDictItemByCode,
params: {
dictCode: 'queen_execute_sequence',
},
labelField: 'itemText',
valueField: 'itemValue',
},
},
{
label: '描述',
field: 'description',
component: 'InputTextArea',
},
];
export const step2Schemas: FormSchema[] = [
{
field: 'transportType',
component: 'Select',
label: '传输方式',
defaultValue: 'COAP',
componentProps: {
options: [
{ label: 'MQTT', value: 'MQTT' },
{ label: 'TCP', value: 'TCP' },
{ label: 'CoAP', value: 'CoAP' },
{ label: 'LWM2M', value: 'LWM2M' },
{ label: 'SNMP', value: 'SNMP' },
],
},
},
];
export const step3Schemas: FormSchema[] = [
{
field: 'alarmType',
component: 'Input',
label: '报警类型',
colProps: {
span: 12,
},
required: true,
componentProps: {
placeholder: '请输入报警类型',
},
},
];
export const step3HighSetting: FormSchema[] = [
{
field: 'propagate',
component: 'Checkbox',
label: '',
slot: 'checkBox',
},
{
field: 'propagateRelationTypes',
component: 'Input',
label: '关联类型',
componentProps: {
placeholder: '要传递的关联类型',
},
ifShow: ({ values }) => !!values.propagate,
},
];
export const step3CreateAlarm: FormSchema[] = [
{
field: 'alarmType',
component: 'Select',
label: '严重程度',
componentProps: {
placeholder: '请选择严重程度',
options: [
{
value: '1',
label: '危险',
},
{
value: '2',
label: '重要',
},
{
value: '3',
label: '次要',
},
{
value: '4',
label: '警告',
},
{
value: '5',
label: '不确定',
},
],
},
},
];
export const step3ClearAlarm: FormSchema[] = [
// {
// field: 'associationType',
// component: 'Input',
// label: '关联类型',
// componentProps: {
// placeholder: '要传递的关联类型',
// },
// },
];