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
| {
| "templateName":"黑白名单",
| "templateCode":"carBlackWhite",
| "templateKey":"bwId",
| "templateKeyName":"黑白名单ID",
| "searchCode": "carNum",
| "searchName": "车牌号",
| "conditions": [
| {
| "name": "名单类型",
| "inputType": "select",
| "selectValue":"1111,2222",
| "selectValueName":"黑名单,白名单",
| "code": "blackWhite",
| "whereCondition": "equal"
| },
| {
| "name": "车牌号",
| "inputType": "input",
| "code": "carNum",
| "whereCondition": "equal"
| },
| {
| "name": "名单ID",
| "inputType": "input",
| "code": "bwId",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"blackWhite",
| "cnCode":"名单类型",
| "desc":"必填,请填写名单类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"select",
| "selectValue":"1111,2222",
| "selectValueName":"黑名单,白名单",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"名单类型格式错误",
| "show": true
| },
| {
| "code": "carNum",
| "cnCode":"车牌号",
| "desc":"必填,请填写车牌号",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxin",
| "limitParam":"1,12",
| "limitErrInfo":"车牌号大于12位",
| "show": true
| },
| {
| "code": "startTime",
| "cnCode":"开始时间",
| "desc":"必填,请选择开始时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"dateTime",
| "limitParam":"",
| "limitErrInfo":"不是有效的时间格式",
| "show": true
| },
| {
| "code": "endTime",
| "cnCode":"结束时间",
| "desc":"必填,请选择结束时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"dateTime",
| "limitParam":"",
| "limitErrInfo":"不是有效的时间格式",
| "show": true
| }
| ]
| }
|
|