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
| {
| "templateName":"公众号菜单",
| "directories": "property",
| "templateCode":"wechatMenu",
| "templateKey":"wechatMenuId",
| "templateKeyName":"菜单ID",
| "searchCode": "wechatMenuId",
| "searchName": "菜单ID",
| "conditions": [
| {
| "name": "菜单名称",
| "inputType": "input",
| "code": "menuName",
| "whereCondition": "equal"
| },
| {
| "name": "菜单级别",
| "inputType": "select",
| "selectValue":"101,202",
| "selectValueName":"一级菜单,二级菜单",
| "code": "menuLevel",
| "whereCondition": "equal"
| },
| {
| "name": "菜单类别",
| "inputType": "select",
| "selectValue":"view",
| "selectValueName":"链接",
| "code": "menuType",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"menuName",
| "cnCode":"菜单名称",
| "desc":"必填,请填写菜单名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"max",
| "limitParam":"1,7",
| "limitErrInfo":"菜单名称不能超过7位",
| "show": true
| },
| {
| "code": "menuType",
| "cnCode":"菜单类型",
| "desc":"必填,请填写菜单类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"view",
| "selectValueName":"链接",
| "limit":"maxLength",
| "limitParam":"10",
| "limitErrInfo":"菜单类型格式错误",
| "show": true
| },
| {
| "code": "menuLevel",
| "cnCode":"菜单级别",
| "desc":"必填,请填写菜单级别",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"101,202",
| "selectValueName":"一级菜单,二级菜单",
| "limit":"maxLength",
| "limitParam":"10",
| "limitErrInfo":"菜单级别格式错误",
| "show": true
| },
| {
| "code":"menuValue",
| "cnCode":"值",
| "desc":"必填,请填写值",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"50",
| "limitErrInfo":"值不能超过50位",
| "show": true
| },
|
| {
| "code":"appId",
| "cnCode":"AppId",
| "desc":"必填,请填写小程序AppId",
| "required":false,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"AppId不能超过64位",
| "show": true
| },
| {
| "code":"pagepath",
| "cnCode":"小程序地址",
| "desc":"必填,请填写小程序运行地址",
| "required":false,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"小程序地址不能超过200位",
| "show": true
| }
| ]
| }
|
|