|
|
@@ -20,15 +20,15 @@
|
|
|
<div class="basic-title">轴温监测曲线</div>
|
|
|
<div class="echart-box">
|
|
|
<faultEchartLine :selectData="selectData" :warningMonitorRowIndex="warningMonitorRowIndex"
|
|
|
- :deviceId="deviceID" :deviceType="deviceType" :Type="'tempZw'" :addData="tempzwValue" :legendName="'轴温'"
|
|
|
- :echartColor="'#ff0000'"></faultEchartLine>
|
|
|
+ :deviceId="deviceID" :deviceType="deviceType" :Type="'tempZw'" :legendName="'轴温'" :echartColor="'#ff0000'">
|
|
|
+ </faultEchartLine>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="basic-content">
|
|
|
<div class="basic-title">电机温度监测曲线</div>
|
|
|
<div class="echart-box">
|
|
|
<faultEchartLine :selectData="selectData" :warningMonitorRowIndex="warningMonitorRowIndex"
|
|
|
- :deviceId="deviceID" :deviceType="deviceType" :Type="'tempDj'" :addData="tempdjValue" :legendName="'电机温度'"
|
|
|
+ :deviceId="deviceID" :deviceType="deviceType" :Type="'tempDj'" :legendName="'电机温度'"
|
|
|
:echartColor="'#2ec1dd'"></faultEchartLine>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -36,8 +36,7 @@
|
|
|
<div class="basic-title">电流监测曲线</div>
|
|
|
<div class="echart-box">
|
|
|
<faultEchartLine :selectData="selectData" :warningMonitorRowIndex="warningMonitorRowIndex"
|
|
|
- :deviceId="deviceID" :deviceType="deviceType" :Type="'Dl'" :addData="dlValue" :legendName="'电流'"
|
|
|
- :echartColor="'#fbc21c'">
|
|
|
+ :deviceId="deviceID" :deviceType="deviceType" :Type="'Dl'" :legendName="'电流'" :echartColor="'#fbc21c'">
|
|
|
</faultEchartLine>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -45,8 +44,7 @@
|
|
|
<div class="basic-title">电压监测曲线</div>
|
|
|
<div class="echart-box">
|
|
|
<faultEchartLine :selectData="selectData" :warningMonitorRowIndex="warningMonitorRowIndex"
|
|
|
- :deviceId="deviceID" :deviceType="deviceType" :Type="'Dy'" :addData="dyValue" :legendName="'电压'"
|
|
|
- :echartColor="'#259745'">
|
|
|
+ :deviceId="deviceID" :deviceType="deviceType" :Type="'Dy'" :legendName="'电压'" :echartColor="'#259745'">
|
|
|
</faultEchartLine>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -54,8 +52,7 @@
|
|
|
<div class="basic-title">径向振动监测曲线</div>
|
|
|
<div class="echart-box">
|
|
|
<faultEchartLine :selectData="selectData" :warningMonitorRowIndex="warningMonitorRowIndex"
|
|
|
- :deviceId="deviceID" :deviceType="deviceType" :Type="'jxzd'" :addData="jxzdValue" :legendName="'径向振动'"
|
|
|
- :echartColor="'#0fcb74'">
|
|
|
+ :deviceId="deviceID" :deviceType="deviceType" :Type="'jxzd'" :legendName="'径向振动'" :echartColor="'#0fcb74'">
|
|
|
</faultEchartLine>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -63,8 +60,7 @@
|
|
|
<div class="basic-title">垂直振动监测曲线</div>
|
|
|
<div class="echart-box">
|
|
|
<faultEchartLine :selectData="selectData" :warningMonitorRowIndex="warningMonitorRowIndex"
|
|
|
- :deviceId="deviceID" :deviceType="deviceType" :Type="'czzd'" :addData="czzdValue" :legendName="'垂直振动'"
|
|
|
- :echartColor="'#00a9ff'">
|
|
|
+ :deviceId="deviceID" :deviceType="deviceType" :Type="'czzd'" :legendName="'垂直振动'" :echartColor="'#00a9ff'">
|
|
|
</faultEchartLine>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -106,48 +102,48 @@ let faultList = ref<any[]>([])//异常信息列表
|
|
|
let normalNum = ref(0)//正常测点数量
|
|
|
let abnormalNum = ref(0)//
|
|
|
|
|
|
-let tempzwValue = computed(() => {
|
|
|
- return {
|
|
|
- y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Tempzw'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Tempzw'] : '',
|
|
|
- x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
- }
|
|
|
+// let tempzwValue = computed(() => {
|
|
|
+// return {
|
|
|
+// y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Tempzw'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Tempzw'] : '',
|
|
|
+// x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
+// }
|
|
|
|
|
|
-}) //实时轴温
|
|
|
-let tempdjValue = computed(() => {
|
|
|
- return {
|
|
|
- y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Tempdj'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Tempdj'] : '',
|
|
|
- x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
- }
|
|
|
+// }) //实时轴温
|
|
|
+// let tempdjValue = computed(() => {
|
|
|
+// return {
|
|
|
+// y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Tempdj'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Tempdj'] : '',
|
|
|
+// x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
+// }
|
|
|
|
|
|
-}) //实时电机温度
|
|
|
-let dlValue = computed(() => {
|
|
|
- return {
|
|
|
- y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Dl'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Dl'] : '',
|
|
|
- x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
- }
|
|
|
+// }) //实时电机温度
|
|
|
+// let dlValue = computed(() => {
|
|
|
+// return {
|
|
|
+// y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Dl'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Dl'] : '',
|
|
|
+// x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
+// }
|
|
|
|
|
|
-}) //实时电流
|
|
|
-let dyValue = computed(() => {
|
|
|
- return {
|
|
|
- y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Dy'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Dy'] : '',
|
|
|
- x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
- }
|
|
|
+// }) //实时电流
|
|
|
+// let dyValue = computed(() => {
|
|
|
+// return {
|
|
|
+// y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Dy'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Dy'] : '',
|
|
|
+// x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
+// }
|
|
|
|
|
|
-}) //实时电压
|
|
|
-let jxzdValue = computed(() => {
|
|
|
- return {
|
|
|
- y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Jxzd'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Jxzd'] : '',
|
|
|
- x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
- }
|
|
|
+// }) //实时电压
|
|
|
+// let jxzdValue = computed(() => {
|
|
|
+// return {
|
|
|
+// y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Jxzd'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Jxzd'] : '',
|
|
|
+// x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
+// }
|
|
|
|
|
|
-}) //实时径向振动
|
|
|
-let czzdValue = computed(() => {
|
|
|
- return {
|
|
|
- y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Czzd'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Czzd'] : '',
|
|
|
- x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
- }
|
|
|
+// }) //实时径向振动
|
|
|
+// let czzdValue = computed(() => {
|
|
|
+// return {
|
|
|
+// y: props.warningMonitorRowIndex == 0 ? props.selectData['Fan1Czzd'] : props.warningMonitorRowIndex == 1 ? props.selectData['Fan2Czzd'] : '',
|
|
|
+// x: props.selectData['tTime'].substring(props.selectData['tTime'].lastIndexOf(' '))
|
|
|
+// }
|
|
|
|
|
|
-}) //实时垂直振动
|
|
|
+// }) //实时垂直振动
|
|
|
|
|
|
let $emit = defineEmits(['handlerClose'])
|
|
|
|