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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
| {
| "templateName": "返省上报",
| "templateCode": "reportInfoBackCity",
| "templateKey": "backId",
| "templateKeyName": "返回ID",
| "searchCode": "backId",
| "searchName": "返回ID",
| "directories": "property",
| "conditions": [
| {
| "name": "姓名",
| "inputType": "input",
| "code": "name",
| "whereCondition": "equal"
| },
| {
| "name": "身份证",
| "inputType": "input",
| "code": "idCard",
| "whereCondition": "equal"
| },
| {
| "name": "手机号",
| "inputType": "input",
| "code": "tel",
| "whereCondition": "equal"
| },
| {
| "name": "来源地",
| "inputType": "select",
| "selectValue":"1001,2002",
| "selectValueName":"国内,国外",
| "code": "source",
| "whereCondition": "equal"
| }
| ],
| "columns": [
| {
| "code": "name",
| "cnCode": "姓名",
| "desc": "必填,请填写姓名",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "64",
| "limitErrInfo": "姓名超过64位",
| "show": true
| },
| {
| "code": "idCard",
| "cnCode": "身份证",
| "desc": "必填,请填写身份证",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "64",
| "limitErrInfo": "身份证不能为空",
| "show": true
| },
| {
| "code": "tel",
| "cnCode": "手机号",
| "desc": "必填,请填写手机号",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "phone",
| "limitParam": "",
| "limitErrInfo": "手机号格式错误",
| "show": true
| },
| {
| "code": "source",
| "cnCode": "来源地",
| "desc": "必填,请填写来源地",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "select",
| "selectValue":"1001,2002",
| "selectValueName":"国内,国外",
| "limit": "num",
| "limitParam": "",
| "limitErrInfo": "来源地格式错误",
| "show": true
| },
| {
| "code": "sourceCityName",
| "cnCode": "城市名称",
| "desc": "必填,请填写城市名称",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "64",
| "limitErrInfo": "城市名称格式错误",
| "show": true
| },
| {
| "code": "backTime",
| "cnCode": "返回时间",
| "desc": "必填,请填写返回时间",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "dateTime",
| "limitParam": "",
| "limitErrInfo": "返回时间格式错误",
| "show": true
| },
| {
| "code": "remark",
| "cnCode": "备注",
| "desc": "可填,请填写备注",
| "required": false,
| "hasDefaultValue": false,
| "defaultValue": "",
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "200",
| "limitErrInfo": "备注内容不能超过200",
| "show": false
| }
| ]
| }
|
|