device.data.ts
2.63 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
import { BasicColumn } from '/@/components/Table';
import { FormSchema } from '/@/components/Table';
import { findDictItemByCode } from '/@/api/system/dict';
import { DeviceTypeEnum, DeviceState } from '/@/api/device/model/deviceModel';
export const columns: BasicColumn[] = [
{
title: '设备名称',
dataIndex: 'name',
width: 120,
},
{
title: '设备类型',
dataIndex: 'deviceType',
width: 100,
slots: { customRender: 'deviceType' },
},
{
title: '设备配置',
dataIndex: 'deviceProfile.name',
width: 160,
slots: { customRender: 'deviceProfile' },
},
{
title: '所属组织',
dataIndex: 'organizationId',
slots: { customRender: 'organizationId' },
},
{
title: '标签',
dataIndex: 'label',
width: 180,
},
{
title: '状态',
dataIndex: 'deviceState',
width: 120,
slots: { customRender: 'deviceState' },
},
{
title: '最后连接时间',
dataIndex: 'lastConnectTime',
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 formSchema: FormSchema[] = [
{
field: 'icon',
label: '设备图片: ',
slot: 'iconSelect',
component: 'Input',
},
{
field: 'name',
label: '设备名称',
required: true,
component: 'Input',
componentProps: {
maxLength: 30,
},
},
{
field: 'deviceType',
label: '设备类型',
required: true,
component: 'ApiSelect',
componentProps: {
api: findDictItemByCode,
params: {
dictCode: 'device_type',
},
labelField: 'itemText',
valueField: 'itemValue',
},
},
{
field: 'label',
label: '设备标签',
component: 'Input',
componentProps: {
maxLength: 255,
},
},
{
label: '备注',
field: 'remark',
component: 'InputTextArea',
},
];