data.ts
1.96 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
import { FormSchema } from '/@/components/Form';
import { findDictItemByCode } from '/@/api/system/dict';
import { deviceProfile } from '/@/api/device/deviceManager';
import { getOrganizationList } from '/@/api/system/system';
import { copyTransFun } from '/@/utils/fnUtils';
// 第一步的表单
export const step1Schemas: 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: 'profileId',
label: '设备配置',
required: true,
component: 'ApiSelect',
componentProps: {
api: deviceProfile,
labelField: 'name',
valueField: 'id',
},
},
{
field: 'organizationId',
required: true,
label: '所属组织',
component: 'ApiTreeSelect',
componentProps: {
api: async () => {
const data = await getOrganizationList();
copyTransFun(data as any as any[]);
return data;
},
},
},
{
field: 'label',
label: '设备标签',
component: 'Input',
componentProps: {
maxLength: 255,
},
},
{
field: 'deviceAddress',
label: '设备位置',
component: 'Input',
slot: 'deviceAddress',
},
{
field: 'remark',
label: '备注',
component: 'InputTextArea',
},
{
field: 'id',
label: 'id',
component: 'Input',
show: false,
},
{
field: 'deviceToken',
label: '设备唯一token',
component: 'Input',
show: false,
},
{
field: 'tenantId',
label: '租户Code',
component: 'Input',
show: false,
},
];