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
| {
| "templateName":"位置管理",
| "directories": "property",
| "templateCode":"location",
| "templateKey":"locationId",
| "templateKeyName":"位置ID",
| "searchCode": "locationName",
| "searchName": "位置名称",
| "conditions": [
| {
| "name": "位置名称",
| "inputType": "input",
| "code": "locationName",
| "whereCondition": "equal"
| },
| {
| "name": "位置编码",
| "inputType": "input",
| "code": "locationId",
| "whereCondition": "equal"
| },
| {
| "name": "位置类型",
| "inputType": "select",
| "selectValue":"1000,2000,3000",
| "selectValueName":"小区,单元,房屋",
| "code": "locationType",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"locationName",
| "cnCode":"位置名称",
| "desc":"必填,请填写位置名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"max",
| "limitParam":"1,100",
| "limitErrInfo":"位置名称不能超过100位",
| "show": true
| },
| {
| "code": "locationType",
| "cnCode":"位置类型",
| "desc":"必填,请填写位置类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"1000,2000,3000",
| "selectValueName":"小区,单元,房屋",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"位置类型 格式错误",
| "show": true
| }
| ]
| }
|
|