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
| {
| "templateName": "信息大类",
| "directories": "property",
| "templateCode": "activitiesType",
| "templateKey": "typeCd",
| "templateKeyName": "大类编码",
| "searchCode": "typeCd",
| "searchName": "大类编码",
| "conditions": [
| {
| "name": "大类编码",
| "inputType": "input",
| "code": "typeCd",
| "whereCondition": "equal"
| },
| {
| "name": "大类名称",
| "inputType": "input",
| "code": "typeName",
| "whereCondition": "equal"
| },
| {
| "name": "是否显示",
| "inputType": "select",
| "selectValue":"Y,N",
| "selectValueName":"是,否",
| "code": "defalutShow",
| "whereCondition": "equal"
| }
| ],
| "columns": [
| {
| "code": "typeName",
| "cnCode": "大类名称",
| "desc": "必填,请填写大类名称",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "100",
| "limitErrInfo": "大类名称超过100位",
| "show": true
| },
| {
| "code": "typeDesc",
| "cnCode": "大类描述",
| "desc": "可填,请填写类型描述",
| "required": false,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "maxLength",
| "limitParam": "500",
| "limitErrInfo": "描述超过500位",
| "show": true
| },
| {
| "code": "seq",
| "cnCode": "显示序号",
| "desc": "必填,请填写显示序号",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "input",
| "limit": "num",
| "limitParam": "",
| "limitErrInfo": "显示序号不是有效数字",
| "show": true
| },
| {
| "code": "defalutShow",
| "cnCode": "是否显示",
| "desc": "必填,请填写是否显示",
| "required": true,
| "hasDefaultValue": false,
| "inputType": "select",
| "selectValue": "Y,N",
| "selectValueName": "是,否",
| "limit": "maxLength",
| "limitParam": "2",
| "limitErrInfo": "是否显示格式错误",
| "show": true
| }
| ]
| }
|
|