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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
| {
| "templateName":"属性配置",
| "directories": "dev",
| "templateCode":"attrSpec",
| "templateKey":"specCd",
| "templateKeyName":"规格",
| "searchCode": "specCd",
| "searchName": "规格",
| "conditions": [
| {
| "name": "规格名称",
| "inputType": "input",
| "code": "specName",
| "whereCondition": "equal"
| },
| {
| "name": "表名",
| "inputType": "select",
| "selectValue":"building_room_attr",
| "selectValueName":"房屋属性",
| "code": "tableName",
| "whereCondition": "equal"
| },
| {
| "name": "规格",
| "inputType": "input",
| "code": "specCd",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"tableName",
| "cnCode":"属性表",
| "desc":"必填,请选择属性",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"building_room_attr",
| "selectValueName":"房屋属性",
| "limit":"",
| "limitParam":"",
| "limitErrInfo":"模板格式错误",
| "show": true
| },
| {
| "code": "specName",
| "cnCode":"规格名称",
| "desc":"必填,请填写规格名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"规格名称太长",
| "show": true
| },
| {
| "code": "specHoldplace",
| "cnCode":"说明",
| "desc":"选填,请填写说明",
| "required":false,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"200",
| "limitErrInfo":"说明不能超过500位",
| "show": false
| },
| {
| "code":"required",
| "cnCode":"必填",
| "desc":"必填,请选择是否必填",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"Y,N",
| "selectValueName":"是,否",
| "limit":"",
| "limitParam":"",
| "limitErrInfo":"模板格式错误",
| "show": true
| },
| {
| "code":"specShow",
| "cnCode":"展示",
| "desc":"必填,请选择是否添加编辑时展示",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"Y,N",
| "selectValueName":"是,否",
| "limit":"",
| "limitParam":"",
| "limitErrInfo":"模板格式错误",
| "show": true
| },
| {
| "code":"specValueType",
| "cnCode":"值类型",
| "desc":"必填,请选择值类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"1001,2002,3003",
| "selectValueName":"字符串,整数,金额",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"值类型格式错误",
| "show": true
| },
| {
| "code":"specType",
| "cnCode":"规格类型",
| "desc":"必填,请选择规格类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"2233,3344",
| "selectValueName":"input,select",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"规格类型错误",
| "show": true
| }
| ,
| {
| "code":"listShow",
| "cnCode":"查询显示",
| "desc":"必填,请选择查询显示",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"Y,N",
| "selectValueName":"是,否",
| "limit":"",
| "limitParam":"",
| "limitErrInfo":"规格类型错误",
| "show": true
| }
| ]
| }
|
|