data.ts
1.14 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
import { FormSchema } from '/@/components/Form';
import { findDictItemByCode } from '/@/api/system/dict';
export const step1Schemas: FormSchema[] = [
{
field: 'name',
label: '配置名称',
required: true,
component: 'Input',
componentProps: {
maxLength: 30,
},
},
{
field: 'deviceType',
label: '队列优先级',
component: 'ApiSelect',
componentProps: {
api: findDictItemByCode,
params: {
dictCode: 'queen_execute_sequence',
},
labelField: 'itemText',
valueField: 'itemValue',
},
},
{
label: '备注',
field: 'remark',
component: 'InputTextArea',
},
];
export const step2Schemas: FormSchema[] = [
{
field: 'transportType',
component: 'Select',
label: '传输方式',
defaultValue: 'DEFAULT',
componentProps: {
options: [{ label: '默认', value: 'DEFAULT' }],
},
},
];
export const step3Schemas: FormSchema[] = [
{
field: 'transportType',
component: 'Select',
label: '报警规则',
defaultValue: 'DEFAULT',
componentProps: {
options: [{ label: '默认', value: 'DEFAULT' }],
},
},
];