tableParameters.js
3.78 KB
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// 故障报告 报警超40分钟
var faultReportTable = [
{
label: '项目(本周超40分钟故障)',
prop: 'ProjectName',
with: 200,
},
{
label: '设备名称',
prop: 'EquipmentName',
with: 160,
},
{
label: '故障內容',
prop: 'Alarm',
with: 600,
},
{
label: '故障总时间(分)',
prop: 'ErrorDuration',
with: 120,
},
{
label: '故障原因方',
prop: 'Reason',
with: 150,
},
{
label: '防范对策',
prop: 'HandleInfo',
with: 300,
},
{
label: '负责人',
prop: 'HandleUser',
with: 160,
},
{
label: '故障原因(导出Excel用户自己补充)',
prop: 'AlarmReason',
with: 250,
},
]
// 故障报告弹出框表格
var faultReportTableDialog = [
{
label: '设备名称',
prop: 'EquipmentName',
with: 155,
},
{
label: '故障内容',
prop: 'Alarm',
with: 400,
},
{
label: '故障时间(分)',
prop: 'timeVal',
with: 115,
},
{
label: '开始日期',
prop: 'created',
with: 170,
},
{
label: '结束日期',
prop: 'updated',
with: 170,
}
]
//故障分析 表格
var faultAnalysis = [
{
label: '项目名称',
prop: 'ProjectName',
with: 210,
},
{
label: '设备名称',
prop: 'EquipmentName',
with: 200,
},
{
label: '故障内容',
prop: 'Alarm',
with: 350,
}, {
label: '故障原因方',
prop: 'Reason',
with: 150,
},
{
label: '开始时间',
prop: 'CreateTime',
with: 180,
}, {
label: '结束时间',
prop: 'UpdateTime',
with: 180,
}, {
label: '停机时间(分)',
prop: 'ErrorDuration',
with: 140,
},
{
label: '故障原因及维修方法',
prop: 'HandleInfo',
with: 270,
}, {
label: '维修人员',
prop: 'HandleUser',
with: 100,
},
{
label: '确认时间',
prop: 'UserHandleTime',
with: 180,
}]
//故障月份对比、故障次数天每小时对比
var faultStatisti = [
{
label: '设备编码',
prop: 'EquipmentCode',
with: 220,
},
{
label: '设备名称',
prop: 'EquipmentName',
with: 180,
},
{
label: '故障内容',
prop: 'AlarmMessage',
with: 350,
}, {
label: '开始时间',
prop: 'CreateTime',
with: 180,
},
{
label: '结束时间',
prop: 'UpdateTime',
with: 180,
},
{
label: '持续时间/min',
prop: 'ErrorDuration',
with: 120,
},
{
label: '备注',
prop: 'Remark',
with: 350,
},
{
label: '处理时间',
prop: 'UserHandleTime',
with: 180,
},
{
label: '处理记录',
prop: 'HandleInfo',
with: 120,
},
{
label: '处理人',
prop: 'HandleUser',
with: 350,
},
{
label: '原因方',
prop: 'Reason',
with: 180,
}]
//故障重复对比
var faultNumberRepeat = [
{
label: '设备名称',
prop: 'equipmentName',
with: 220,
},
{
label: '设备类型',
prop: 'equipmentTypeName',
with: 200,
},
{
label: '故障内容',
prop: 'alarmMessage',
with: 600,
}, {
label: '重复次数(>5变色)',
prop: 'alarmCount',
with: 180,
}]
// export { pickup, optTablePlan };