|
|
@@ -65,13 +65,13 @@
|
|
65
|
65
|
<td style="text-align:center;">{{ realTimeList.time | date:'yyyy-MM-dd HH:mm:ss' }}</td>
|
|
66
|
66
|
<td style="text-align:center;">
|
|
67
|
67
|
<div ng-if="realTimeList.intemp==250">
|
|
68
|
|
- <acronym title="设备异常"><span style="color: red;">{{ realTimeList.intemp }}</span></acronym>
|
|
|
68
|
+ <acronym title="设备异常"><span style="color: red;">-100</span></acronym>
|
|
69
|
69
|
</div>
|
|
70
|
70
|
<div ng-if="realTimeList.intemp!=250">{{ realTimeList.intemp }}</div>
|
|
71
|
71
|
</td>
|
|
72
|
72
|
<td style="text-align:center;">
|
|
73
|
73
|
<div ng-if="realTimeList.inh==250">
|
|
74
|
|
- <acronym title="设备异常"><span style="color: red;">{{ realTimeList.inh }}</span></acronym>
|
|
|
74
|
+ <acronym title="设备异常"><span style="color: red;">-1</span></acronym>
|
|
75
|
75
|
</div>
|
|
76
|
76
|
<div ng-if="realTimeList.inh!=250">{{ realTimeList.inh }}</div>
|
|
77
|
77
|
</td>
|
|
|
@@ -80,7 +80,7 @@
|
|
80
|
80
|
<!--高温报警-->
|
|
81
|
81
|
<div ng-if="realTimeList.max >= warningValueList[realTimeList.storehouse].high">
|
|
82
|
82
|
<div ng-if="realTimeList.max==250">
|
|
83
|
|
- <acronym title="设备异常"><span style="color: red;">{{ realTimeList.max }}</span></acronym>
|
|
|
83
|
+ <acronym title="设备异常"><span style="color: red;">-100</span></acronym>
|
|
84
|
84
|
</div>
|
|
85
|
85
|
<div ng-if="realTimeList.max!=250">
|
|
86
|
86
|
<acronym title="油温高限报警为: {{warningValueList[realTimeList.storehouse].high}}℃"><span style="color: red;">{{ realTimeList.max }}</span></acronym>
|
|
|
@@ -97,7 +97,12 @@
|
|
97
|
97
|
<td style="text-align:center;">
|
|
98
|
98
|
<!--低温报警-->
|
|
99
|
99
|
<div ng-if="realTimeList.min <= warningValueList[realTimeList.storehouse].low">
|
|
100
|
|
- <acronym title="油温低限报警为: {{warningValueList[realTimeList.storehouse].low}}℃"><span style="color: red;">{{ realTimeList.min }}</span></acronym>
|
|
|
100
|
+ <div ng-if="realTimeList.min==250">
|
|
|
101
|
+ <acronym title="设备异常"><span style="color: red;">-100</span></acronym>
|
|
|
102
|
+ </div>
|
|
|
103
|
+ <div ng-if="realTimeList.min!=250">
|
|
|
104
|
+ <acronym title="油温低限报警为: {{warningValueList[realTimeList.storehouse].low}}℃"><span style="color: red;">{{ realTimeList.min }}</span></acronym>
|
|
|
105
|
+ </div>
|
|
101
|
106
|
</div>
|
|
102
|
107
|
<div ng-if="realTimeList.min > warningValueList[realTimeList.storehouse].low">
|
|
103
|
108
|
<span>{{ realTimeList.min }}</span>
|
|
|
@@ -107,7 +112,12 @@
|
|
107
|
112
|
</div>
|
|
108
|
113
|
<!--低温预警-->
|
|
109
|
114
|
</td>
|
|
110
|
|
- <td style="text-align:center;">{{ realTimeList.avg}}</td>
|
|
|
115
|
+ <td style="text-align:center;">
|
|
|
116
|
+ <div ng-if="realTimeList.avg==250">
|
|
|
117
|
+ <acronym title="设备异常"><span style="color: red;">-100</span></acronym>
|
|
|
118
|
+ </div>
|
|
|
119
|
+ <div ng-if="realTimeList.avg!=250">{{ realTimeList.avg}}</div>
|
|
|
120
|
+ </td>
|
|
111
|
121
|
<td style="text-align:center;">
|
|
112
|
122
|
<a href-void ng-click="onlyStoreGrainTemperatureDetection(realTimeList.storehouse)"><i class=""></i>{{storeHouseCodeObj[realTimeList.storehouse].storehouseName}}检测</a>
|
|
113
|
123
|
</td>
|