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
| {
| "templateName":"组织管理",
| "templateCode":"org",
| "templateKey":"orgId",
| "templateKeyName":"组织ID",
| "searchCode": "orgName",
| "searchName": "组织名称",
| "conditions": [
|
| {
| "name": "组织ID",
| "inputType": "input",
| "code": "orgId",
| "whereCondition": "equal"
| },
| {
| "name": "组织名称",
| "inputType": "input",
| "code": "orgName",
| "whereCondition": "equal"
| },
| {
| "name": "组织级别",
| "inputType": "input",
| "code": "orgLevel",
| "selectValue":"1,2,3",
| "selectValueName":"公司级,分公司级,部门级",
| "whereCondition": "equal"
| },
| {
| "name": "上级组织",
| "inputType": "input",
| "code": "parentOrgId",
| "selectValue":"xxx,xxx,xxx",
| "selectValueName":"xxx,xxx,xxx",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"orgName",
| "cnCode":"组织名称",
| "desc":"必填,请填写组织名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"maxin",
| "limitParam":"2,50",
| "limitErrInfo":"组织名称长度为2至50",
| "show": true
| },
| {
| "code":"orgLevel",
| "cnCode":"组织级别",
| "desc":"必填,请填写报修人名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"select",
| "selectValue":"1,2,3",
| "selectValueName":"公司级,分公司级,部门级",
| "limit":"maxin",
| "limitParam":"2,50",
| "limitErrInfo":"报修人名称必须在2至50字符之间",
| "show": true
| },
| {
| "code":"parentOrgId",
| "cnCode":"上级ID",
| "desc":"必填,请选择上级ID",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"select",
| "selectValue":"1,2,3",
| "selectValueName":"公司级,分公司级,部门级",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"上级ID不正确",
| "show": true
| },
| {
| "code":"description",
| "cnCode":"描述",
| "desc":"必填,请填写描述",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"textarea",
| "limit":"maxLength",
| "limitParam":"200",
| "limitErrInfo":"描述不能为空",
| "show": false
| }
| ]
| }
|
|