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
| {
| "templateName":"巡检任务",
| "templateCode":"inspectionTask",
| "templateKey":"taskId",
| "templateKeyName":"任务编码",
| "searchCode": "taskId",
| "searchName": "任务编码",
| "conditions": [
| {
| "name": "执行人",
| "inputType": "input",
| "code": "planUserName",
| "whereCondition": "equal"
| },
| {
| "name": "巡检计划",
| "inputType": "input",
| "code": "inspectionPlanId",
| "whereCondition": "equal"
| },
| {
| "name": "巡检时间",
| "inputType": "input",
| "code": "actInsTime",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"taskId",
| "cnCode":"任务编码",
| "desc":"必填,请选择任务编码",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"任务编码格式错误",
| "show": true
| },
| {
| "code": "inspectionPlanId",
| "cnCode":"巡检计划",
| "desc":"必填,请填写收费项目",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxin",
| "limitParam":"1,100",
| "limitErrInfo":"收费项目不能超过100位",
| "show": true
| },
| {
| "code":"planInsTime",
| "cnCode":"巡检时间",
| "desc":"必填,请选择费用标识",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"1003006,2006012",
| "selectValueName":"周期性费用,一次性费用",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"费用类型格式错误",
| "show": true
| },
| {
| "code": "actInsTime",
| "cnCode":"实际巡检时间",
| "desc":"必填,请选择计费起始时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"dateTime",
| "limitParam":"",
| "limitErrInfo":"计费起始时间不是有效的时间格式",
| "show": true
| },
| {
| "code": "planUserName",
| "cnCode":"巡检人",
| "desc":"必填,请选择计费终止时间",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"dateTime",
| "limitParam":"",
| "limitErrInfo":"计费终止时间不是有效的时间格式",
| "show": true
| },
| {
| "code":"actUserName",
| "cnCode":"实际巡检人",
| "desc":"必填,请填写附加费用",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"1001,2002",
| "selectValueName":"面积*单价+附加费,固定费用",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"计算公式格式错误",
| "show": false
| },
| {
| "code":"signType",
| "cnCode":"巡检方式",
| "desc":"必填,请填写计费单价",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"money",
| "limitParam":"",
| "limitErrInfo":"计费单价格式错误",
| "show": true
| }
| ]
| }
|
|