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
| {
| "templateName":"权限",
| "templateCode":"basePrivilege",
| "templateKey":"pId",
| "templateKeyName":"权限ID",
| "searchCode": "name",
| "searchName": "权限名称",
| "conditions": [
| {
| "name": "权限名称",
| "inputType": "input",
| "code": "name",
| "whereCondition": "like"
| },
| {
| "name": "权限编码",
| "inputType": "input",
| "code": "pId",
| "whereCondition": "equal"
| },
| {
| "name": "商户类型",
| "inputType": "select",
| "code": "domain",
| "selectValue":"800900000001,800900000002,800900000003,800900000000",
| "selectValueName":"运营团队,代理商,物业,开发团队",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"name",
| "cnCode":"权限名称",
| "desc":"必填,请填写权限名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"maxin",
| "limitParam":"2,10",
| "limitErrInfo":"权限名称必须在2至10字符之间",
| "show": true
| },
| {
| "code":"domain",
| "cnCode":"商户类型",
| "desc":"必填,请选择商户类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"select",
| "selectValue":"800900000001,800900000002,800900000003,800900000000",
| "selectValueName":"运营团队,代理商,物业,开发团队",
| "limit":"maxin",
| "limitParam":"1,12",
| "limitErrInfo":"商户类型错误",
| "show": true
| },
| {
| "code":"description",
| "cnCode":"描述",
| "desc":"可填,请填写描述",
| "required":false,
| "hasDefaultValue":false,
| "defaultValue":"",
| "inputType":"textarea",
| "limit":"maxLength",
| "limitParam":"200",
| "limitErrInfo":"备注内容不能超过200",
| "show": false
| }
| ]
| }
|
|