|
@@ -30,7 +30,13 @@
|
|
|
<div id="centerCharts" class="chartsStyle"></div>
|
|
|
</div>
|
|
|
<div class="main_table warn-table" style="margin-top: 20px" v-show="isPower">
|
|
|
- <el-table :data="tableData" ref="report-table_power" border max-height="50vh" style="width: 100%">
|
|
|
+ <el-table :data="tableData" ref="report-table_power" border max-height="50vh" style="width: 100%"
|
|
|
+ :header-cell-style="{
|
|
|
+ padding: '4px',
|
|
|
+ fontSize: '16px',
|
|
|
+ fontWeight: bold,
|
|
|
+ border: '0.5px solid rgba(0,0,0,.5) !important',
|
|
|
+ }">
|
|
|
<el-table-column prop="dataTime" label="时间" align="center" width="160"></el-table-column>
|
|
|
<el-table-column prop="theoreticalPower" label="理论功率" align="center"></el-table-column>
|
|
|
<el-table-column prop="availablePower" label="可用功率" align="center"></el-table-column>
|
|
@@ -65,7 +71,13 @@
|
|
|
</el-table>
|
|
|
</div>
|
|
|
<div class="main_table warn-table" v-show="!isPower">
|
|
|
- <el-table :data="tableData" ref="report-table_wind" border max-height="400px" style="width: 100%">
|
|
|
+ <el-table :data="tableData" ref="report-table_wind" border max-height="400px" style="width: 100%"
|
|
|
+ :header-cell-style="{
|
|
|
+ padding: '4px',
|
|
|
+ fontSize: '16px',
|
|
|
+ fontWeight: bold,
|
|
|
+ border: '0.5px solid rgba(0,0,0,.5) !important',
|
|
|
+ }">
|
|
|
<el-table-column prop="dataTime" label="时间" align="center" width="160"></el-table-column>
|
|
|
<el-table-column label="当期数据" align="center">
|
|
|
<el-table-column prop="actualWindSpeedDq" label="实际风速" align="center"></el-table-column>
|