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
| {
| "templateName":"单元",
| "templateCode":"unit",
| "templateKey":"unitId",
| "templateKeyName":"单元ID",
| "searchCode": "unitNum",
| "searchName": "单元编号",
| "columns":[
| {
| "code":"unitNum",
| "cnCode":"单元编号",
| "desc":"必填,请填写单元编号,如1",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"单元编号必须是数字"
| },
| {
| "code":"layerCount",
| "cnCode":"总层数",
| "desc":"必填,请填写单元总层数",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"单元总层数必须是数字"
| },
| {
| "code":"lift",
| "cnCode":"电梯",
| "desc":"必填,请选择是否有电梯",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"select",
| "selectValue":"1010,2020",
| "selectValueName":"有,无",
| "limit":"maxLength",
| "limitParam":"10",
| "limitErrInfo":"电梯错误"
| },
| {
| "code":"remark",
| "cnCode":"备注",
| "desc":"可填,请填写备注",
| "required":false,
| "hasDefaultValue":false,
| "defaultValue":"",
| "inputType":"textarea",
| "limit":"maxLength",
| "limitParam":"200",
| "limitErrInfo":"备注内容不能超过200"
| }
|
| ]
| }
|
|