瀏覽代碼

首页月利用小时修改接口

baiyanting 1 年之前
父節點
當前提交
b950c88faf
共有 1 個文件被更改,包括 8 次插入10 次删除
  1. 8 10
      src/views/Home/components/map.vue

+ 8 - 10
src/views/Home/components/map.vue

@@ -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"],
             };
           }
         });