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
| {
| "templateName":"停车场",
| "templateCode":"parkingArea",
| "templateKey":"paId",
| "templateKeyName":"停车场ID",
| "searchCode": "num",
| "searchName": "停车场编号",
| "conditions": [
| {
| "name": "停车场编号",
| "inputType": "input",
| "code": "num",
| "whereCondition": "equal"
| },
| {
| "name": "停车场类型",
| "inputType": "select",
| "selectValue":"1001,2001",
| "selectValueName":"地上停车场,地下停车场",
| "code": "typeCd",
| "whereCondition": "equal"
| },
| {
| "name": "停车场ID",
| "inputType": "input",
| "code": "paId",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"num",
| "cnCode":"停车场编号",
| "desc":"必填,请填写停车场编号",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"maxin",
| "limitParam":"1,12",
| "limitErrInfo":"停车场编号不能超过12位",
| "show": true
| },
| {
| "code": "typeCd",
| "cnCode":"停车场类型",
| "desc":"必填,请选择停车场类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"1001,2001",
| "selectValueName":"地上停车场,地下停车场",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"停车场类型格式错误",
| "show": true
| },
| {
| "code": "remark",
| "cnCode":"备注",
| "desc":"必填,请填写备注",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxin",
| "limitParam":"1,4000",
| "limitErrInfo":"备注太长",
| "show": false
| }
| ]
| }
|
|