config.data.ts
4.46 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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import { BasicColumn } from '/@/components/Table';
import { FormSchema } from '/@/components/Table';
import {findDictItemByCode} from "/@/api/system/dict";
import {MessageEnum} from "/@/enums/messageEnum";
import {DeviceTypeEnum,DeviceState} from "/@/api/device/model/deviceModel";
export const columns: BasicColumn[] = [
{
title: '设备名称',
dataIndex: 'name',
width: 200,
},
{
title: '设备类型',
dataIndex: 'deviceType',
width: 200,
slots:{customRender:'deviceType'},
},
{
title: '设备配置',
dataIndex: 'deviceProfile.name',
width: 180,
slots: { customRender: 'deviceProfile' },
},
{
title: '标签',
dataIndex: 'label',
width: 180
},
{
title: '配置信息',
dataIndex: 'deviceInfo',
width: 180,
slots: { customRender: 'config' },
},
{
title: '状态',
dataIndex: 'deviceState',
width: 120,
slots: { customRender: 'deviceState' },
},
{
title: '最后连接时间',
dataIndex: 'lastConnectTime',
width: 180,
},
{
title: '创建时间',
dataIndex: 'createTime',
width: 180,
},
];
export const searchFormSchema: FormSchema[] = [
{
field: 'deviceType',
label: '设备类型',
component: 'Select',
componentProps: {
options: [
{ label: '网关设备', value: DeviceTypeEnum.GATEWAY },
{ label: '直连设备', value: DeviceTypeEnum.DIRECT_CONNECTION },
{ label: '网关子设备', value: DeviceTypeEnum.SENSOR },
],
},
colProps: { span: 4 },
},
{
field: 'deviceState',
label: '设备状态',
component: 'Select',
componentProps: {
options: [
{ label: '待激活', value: DeviceState.INACTIVE },
{ label: '在线', value: DeviceState.ONLINE },
{ label: '离线', value: DeviceState.OFFLINE },
],
},
colProps: { span: 4 },
},
{
field: 'name',
label: '设备名称',
component: 'Input',
colProps: { span: 8 },
},
];
export const isMessage = (type:string)=>{
return type===MessageEnum.IS_SMS;
}
export const isEmail = (type:string)=>{
return type===MessageEnum.IS_EMAIL;
}
export const formSchema: FormSchema[] = [
{
field: 'configName',
label: '配置名称',
required: true,
component:'Input'
},
{
field: 'messageType',
label: '消息类型',
required: true,
component: 'ApiSelect',
componentProps: {
api:findDictItemByCode,
params:{
dictCode:"message_type"
},
labelField:'itemText',
valueField:'itemValue',
},
},
{
field: 'platformType',
label: '平台类型',
required: true,
component: 'ApiSelect',
componentProps: {
api:findDictItemByCode,
params:{
dictCode:"platform_type"
},
labelField:'itemText',
valueField:'itemValue',
},
ifShow:({values}) => isMessage(Reflect.get(values,'messageType')),
},
{
field: 'accessKeyId',
label: 'accessKeyId',
required: true,
component:'Input',
ifShow:({values}) => isMessage(Reflect.get(values,'messageType')),
},
{
field: 'accessKeySecret',
label: 'accessKeySecret',
required: true,
component:'Input',
ifShow:({values}) => isMessage(Reflect.get(values,'messageType')),
},
{
field: 'host',
label: '服务器地址',
defaultValue:'smtp.163.com',
required: true,
component:'Input',
ifShow:({values}) => isEmail(Reflect.get(values,'messageType')),
},
{
field: 'port',
label: '端口',
defaultValue: 25,
required: true,
component:'InputNumber',
ifShow:({values}) => isEmail(Reflect.get(values,'messageType')),
},
{
field: 'username',
label: '用户名',
required: true,
component:'Input',
ifShow:({values}) => isEmail(Reflect.get(values,'messageType')),
},
{
field: 'password',
label: '密码',
required: true,
component:'InputPassword',
ifShow:({values}) => isEmail(Reflect.get(values,'messageType')),
},
{
field: 'config',
label: '消息配置',
component:'Input',
show:false,
},
{
field: 'id',
label: '主键',
component:'Input',
show:false,
},
{
field: 'status',
label: '状态',
component: 'RadioButtonGroup',
defaultValue: 0,
componentProps: {
options: [
{ label: '启用', value: 1 },
{ label: '停用', value: 0 },
],
},
},
{
label: '备注',
field: 'remark',
component: 'InputTextArea',
}
];