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
| {
| "templateName":"抄表",
| "directories": "property",
| "templateCode":"meterWater",
| "templateKey":"waterId",
| "templateKeyName":"表ID",
| "searchCode": "waterId",
| "searchName": "表ID",
| "conditions": [
| {
| "name": "表ID",
| "inputType": "input",
| "code": "waterId",
| "whereCondition": "equal"
| },
| {
| "name": "表类型",
| "inputType": "select",
| "selectValue":"1010,2020",
| "selectValueName":"电表,水表",
| "code": "meterType",
| "whereCondition": "equal"
| },
| {
| "name": "房屋编号",
| "inputType": "input",
| "code": "roomNum",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code": "meterType",
| "cnCode":"表类型",
| "desc":"必填,请选择表类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"1010,2020",
| "selectValueName":"电表,水表",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"表类型错误",
| "show": true
| },
| {
| "code": "preDegrees",
| "cnCode":"上期度数",
| "desc":"必填,请填写上期度数",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"money",
| "limitParam":"",
| "limitErrInfo":"上期度数格式错误",
| "show": true
| },
| {
| "code": "curDegrees",
| "cnCode":"本期度数",
| "desc":"必填,请填写本期度数",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"money",
| "limitParam":"",
| "limitErrInfo":"本期度数格式错误",
| "show": true
| },
| {
| "code": "preReadingTime",
| "cnCode":"上期读表时间",
| "desc":"必填,请填写上期读表时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"date",
| "limitParam":"",
| "limitErrInfo":"格式错误",
| "show": true
| },
| {
| "code": "curReadingTime",
| "cnCode":"本期读表时间",
| "desc":"必填,请填写本期读表时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"date",
| "limitParam":"",
| "limitErrInfo":"格式错误",
| "show": true
| },
| {
| "code": "remark",
| "cnCode":"备注",
| "desc":"选填,请填写备注",
| "required":false,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"500",
| "limitErrInfo":"备注格式错误",
| "show": false
| }
| ]
| }
|
|