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
| {
| "templateName":"金币设置",
| "templateCode":"systemGoldSetting",
| "templateKey":"settingId",
| "templateKeyName":"设置ID",
| "searchCode": "settingId",
| "searchName": "设置ID",
| "directories": "admin",
| "conditions": [
| {
| "name": "活动标题",
| "inputType": "input",
| "code": "title",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"goldName",
| "cnCode":"名称",
| "desc":"必填,请填写名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"maxin",
| "limitParam":"1,64",
| "limitErrInfo":"名称不能超过64位",
| "show": true
| },
| {
| "code": "goldType",
| "cnCode":"类型",
| "desc":"必填,请选择类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"1001",
| "selectValueName":"普通金币",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"类型格式错误",
| "show": true
| },
| {
| "code": "buyPrice",
| "cnCode":"购买价格",
| "desc":"必填,请填写购买金币价格",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"money",
| "limitParam":"",
| "limitErrInfo":"购买价格格式错误",
| "show": true
| },
| {
| "code": "usePrice",
| "cnCode":"使用价格",
| "desc":"必填,请填写使用价格",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"money",
| "limitParam":"",
| "limitErrInfo":"使用价格格式错误",
| "show": true
| },
| {
| "code": "validity",
| "cnCode":"有效期",
| "desc":"必填,请填写有效期",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"有效期必须为整数",
| "show": true
| },
| {
| "code": "state",
| "cnCode":"状态",
| "desc":"必填,请选择状态",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"001,002",
| "selectValueName":"启用,停用",
| "limit":"maxLength",
| "limitParam":"12",
| "limitErrInfo":"状态格式错误",
| "show": true
| }
| ]
| }
|
|