|
@@ -1142,9 +1142,8 @@
|
|
|
<el-row class="summarize">
|
|
|
<div
|
|
|
class="summarize-left"
|
|
|
-
|
|
|
+ @click="handleUsingDetail('month', '月利用小时')"
|
|
|
>
|
|
|
- <!-- @click="handleUsingDetail('month', 'yfdl', '月利用小时')" -->
|
|
|
<p>月利用小时</p>
|
|
|
<p>
|
|
|
<span>
|
|
@@ -1156,9 +1155,8 @@
|
|
|
<div class="line"></div>
|
|
|
<div
|
|
|
class="summarize-right"
|
|
|
-
|
|
|
+ @click="handleUsingDetail('year', '年利用小时')"
|
|
|
>
|
|
|
- <!-- @click="handleUsingDetail('year', 'nfdl', '年利用小时')" -->
|
|
|
<p>年利用小时</p>
|
|
|
<p>
|
|
|
<span>{{ StationinformationData?.qt?.nlyxs?.toFixed(2) }}</span>
|
|
@@ -1271,14 +1269,14 @@
|
|
|
<div
|
|
|
class="day"
|
|
|
:class="electronType === 'month' ? 'active' : ''"
|
|
|
- @click="handleUsingDetail('month', 'yfdl', '月利用小时')"
|
|
|
+ @click="handleUsingDetail('month', '月利用小时')"
|
|
|
>
|
|
|
月
|
|
|
</div>
|
|
|
<div
|
|
|
class="year"
|
|
|
:class="electronType === 'year' ? 'active' : ''"
|
|
|
- @click="handleUsingDetail('year', 'nfdl', '年利用小时')"
|
|
|
+ @click="handleUsingDetail('year', '年利用小时')"
|
|
|
>
|
|
|
年
|
|
|
</div>
|
|
@@ -2068,11 +2066,11 @@ export default {
|
|
|
this.showName = title;
|
|
|
});
|
|
|
},
|
|
|
- handleUsingDetail(timetype, key, title) {
|
|
|
+ handleUsingDetail(timetype, title) {
|
|
|
let format = timetype == "month" ? "YYYY-MM" : "YYYY";
|
|
|
this.showkey = "using";
|
|
|
this.electronType = timetype;
|
|
|
- FindUtilizationhours({
|
|
|
+ FindPlanproject({
|
|
|
wpId:
|
|
|
this.wpId +
|
|
|
(this.wpId.includes("FDC") || this.wpId.includes("GDC")
|
|
@@ -2088,7 +2086,7 @@ export default {
|
|
|
.startOf("year")
|
|
|
.add(item.hours - 1, "month")
|
|
|
.format("YYYY-MM"),
|
|
|
- value: item[key],
|
|
|
+ value: item["lyxs"],
|
|
|
};
|
|
|
} else {
|
|
|
return {
|
|
@@ -2096,7 +2094,7 @@ export default {
|
|
|
.startOf(timetype)
|
|
|
.subtract(item.hours, timetype)
|
|
|
.format(format),
|
|
|
- value: item[key],
|
|
|
+ value: item["lyxs"],
|
|
|
};
|
|
|
}
|
|
|
});
|