|
@@ -68,13 +68,14 @@
|
|
|
style="width: 100%"
|
|
|
height="100%"
|
|
|
>
|
|
|
- <el-table-column prop="type" align="center"> </el-table-column>
|
|
|
+ <el-table-column prop="type" align="center" width="55"> </el-table-column>
|
|
|
<el-table-column
|
|
|
v-for="(item, index) in tableHeaderMonth"
|
|
|
:key="index"
|
|
|
- width="64"
|
|
|
+ :width="item.width ? item.width : '65'"
|
|
|
:prop="item.code"
|
|
|
:label="item.title"
|
|
|
+ show-overflow-tooltip
|
|
|
align="center"
|
|
|
>
|
|
|
<template #header="scope">
|
|
@@ -179,13 +180,14 @@
|
|
|
style="width: 100%"
|
|
|
height="calc(100% - 24px)"
|
|
|
>
|
|
|
- <el-table-column prop="type" align="center"> </el-table-column>
|
|
|
+ <el-table-column prop="type" align="center" width="55"> </el-table-column>
|
|
|
<el-table-column
|
|
|
v-for="(item, index) in tableHeaderYear"
|
|
|
:key="index"
|
|
|
- width="63"
|
|
|
+ :width="item.width ? item.width : '65'"
|
|
|
:prop="item.code"
|
|
|
:label="item.title"
|
|
|
+ show-overflow-tooltip
|
|
|
align="center"
|
|
|
>
|
|
|
<template #header="scope">
|
|
@@ -344,8 +346,8 @@ export default {
|
|
|
{ id: -2, name: "光伏" },
|
|
|
],
|
|
|
tableHeaderMonth: [
|
|
|
- { title: "理论发电量", code: "yllfdl" },
|
|
|
- { title: "实际发电量", code: "ysjfdl" },
|
|
|
+ { title: "理论发电量", code: "yllfdl", width: "65" },
|
|
|
+ { title: "实际发电量", code: "ysjfdl", width: "65" },
|
|
|
{ title: "风能利用率(%)", code: "yfnlyl" },
|
|
|
{ title: "维护损失电量", code: "ywhssdl" },
|
|
|
{ title: "维护损失率(%)", code: "ywhssl" },
|
|
@@ -359,8 +361,8 @@ export default {
|
|
|
{ title: "受累损失率(%)", code: "yslssl" },
|
|
|
],
|
|
|
tableHeaderYear: [
|
|
|
- { title: "理论发电量", code: "nllfdl" },
|
|
|
- { title: "实际发电量", code: "nsjfdl" },
|
|
|
+ { title: "理论发电量", code: "nllfdl", width: "65" },
|
|
|
+ { title: "实际发电量", code: "nsjfdl", width: "65" },
|
|
|
{ title: "风能利用率(%)", code: "nfnlyl" },
|
|
|
{ title: "维护损失电量", code: "nwhssdl" },
|
|
|
{ title: "维护损失率(%)", code: "nwhssl" },
|