|
@@ -112,10 +112,11 @@
|
|
|
根据以上标准,对每台风机的运行数据及隐患问题信息进行分析,结果如下:
|
|
|
</p>
|
|
|
<div class="warn-table">
|
|
|
- <el-table class="toolSty" :data="fjsxList1" border style="width: 100%; margin: 10px 0"
|
|
|
+ <el-table class="toolSty" :data="fjsxList1" border style="width: 100%; margin: 10px 0;"
|
|
|
max-height="500" stripe :header-cell-style="{
|
|
|
padding: '4px',
|
|
|
- fontSize: '14px',
|
|
|
+ fontSize: '12px',
|
|
|
+ fontWeight: bold,
|
|
|
border: '0.5px solid rgba(0,0,0,.5) !important',
|
|
|
}" :cell-style="{
|
|
|
height: '40px',
|
|
@@ -125,13 +126,14 @@
|
|
|
'border-bottom': '1px solid rgba(0,0,0,.5)',
|
|
|
'border-right': '1px solid rgba(0,0,0,.5)',
|
|
|
}">
|
|
|
- <el-table-column prop="turbineId" align="center" label="风机编号" width="150" />
|
|
|
- <el-table-column prop="ratedPowerKw" align="center" label="额定功率(KW)" width="90" />
|
|
|
- <el-table-column prop="actualRatedPowerKw" align="center" label="实际额定功率(KW)" width="90" />
|
|
|
+ <el-table-column prop="turbineId" align="center" label="风机编号" width="60" />
|
|
|
+ <el-table-column prop="speed" align="center" label="平均风速(m/s)" width="60" />
|
|
|
+ <el-table-column prop="ratedPowerKw" align="center" label="额定功率(KW)" width="60" />
|
|
|
+ <el-table-column prop="actualRatedPowerKw" align="center" label="实际额定功率(KW)" width="60" />
|
|
|
<el-table-column v-for="(item, index) in orderTableColumn" :key="index" :label="item.name"
|
|
|
:width="item.width" align="center">
|
|
|
<el-table-column v-for="(res, index) in item.children" :key="index" :label="res.name"
|
|
|
- align="center">
|
|
|
+ align="center" :width="res.width ? res.width : 80">
|
|
|
<template #default="scope">
|
|
|
<span>
|
|
|
{{ scope.row[res.code] }}
|
|
@@ -139,14 +141,15 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" prop="performanceIssues" label="性能问题" width="90"
|
|
|
+ <el-table-column align="center" prop="performanceIssues" label="性能问题" width="60"
|
|
|
fixed="right" />
|
|
|
</el-table>
|
|
|
<!-- 温度类隐患 -->
|
|
|
<el-table class="toolSty" :data="fjsxList2" border style="width: 100%; margin: 10px 0"
|
|
|
max-height="500" stripe :header-cell-style="{
|
|
|
padding: '4px',
|
|
|
- fontSize: '14px',
|
|
|
+ fontSize: '12px',
|
|
|
+ fontWeight: bold,
|
|
|
border: '0.5px solid rgba(0,0,0,.5) !important',
|
|
|
}" :cell-style="{
|
|
|
height: '40px',
|
|
@@ -156,12 +159,12 @@
|
|
|
'border-bottom': '1px solid rgba(0,0,0,.5)',
|
|
|
'border-right': '1px solid rgba(0,0,0,.5)',
|
|
|
}">
|
|
|
- <el-table-column prop="turbineId" align="center" label="风机编号" width="150" fixed />
|
|
|
- <el-table-column prop="downtimeCount" align="center" label="故障停机次数" width="80" />
|
|
|
+ <el-table-column prop="turbineId" align="center" label="风机编号" width="60" fixed />
|
|
|
+ <el-table-column prop="downtimeCount" align="center" label="故障停机次数" width="60" />
|
|
|
<el-table-column v-for="(item, index) in orderTableColumn2" :key="index" :label="item.name"
|
|
|
:width="item.width" align="center">
|
|
|
<el-table-column v-for="(res, index) in item.children" :key="index" :label="res.name"
|
|
|
- align="center">
|
|
|
+ align="center" width="68">
|
|
|
<template #default="scope">
|
|
|
<span>
|
|
|
{{ scope.row[res.code] ? scope.row[res.code] : '-' }}
|
|
@@ -169,7 +172,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="reliabilityIssue" align="center" label="可靠性问题" width="100"
|
|
|
+ <el-table-column prop="reliabilityIssue" align="center" label="可靠性问题" width="60"
|
|
|
fixed="right" />
|
|
|
</el-table>
|
|
|
</div>
|
|
@@ -376,7 +379,7 @@
|
|
|
funGetStation() {
|
|
|
let that = this;
|
|
|
// this.renderReportPage({
|
|
|
- // data: jsonData.data
|
|
|
+ // data: jsonData.reldata
|
|
|
// });
|
|
|
that.stationList = []
|
|
|
that.reportStation = ""
|
|
@@ -544,7 +547,7 @@
|
|
|
})
|
|
|
.catch(() => {
|
|
|
this.renderReportPage({
|
|
|
- data: jsonData.data
|
|
|
+ data: jsonData.reldata
|
|
|
});
|
|
|
});
|
|
|
}
|
|
@@ -645,7 +648,10 @@
|
|
|
|
|
|
#pdfDomop {
|
|
|
margin: 20px;
|
|
|
+
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
|
|
|
&.themeLight {
|