瀏覽代碼

新增模拟数据

sunzehao 3 月之前
父節點
當前提交
dfc1abac5a

文件差異過大導致無法顯示
+ 4742 - 165
src/views/IntegratedAlarm/reliability/partsTemperatureAnalyse/dataJson.json


+ 8 - 2
src/views/IntegratedAlarm/reliability/partsTemperatureAnalyse/index2.vue

@@ -247,6 +247,8 @@ export default {
     },
     init() {
       this.$nextTick(() => {
+        this.changeData(dataJson)
+
         let tableDom = this.$refs.multipleTable.$refs.bodyWrapper;
         let time = null;
         tableDom.addEventListener("scroll", () => {
@@ -360,7 +362,12 @@ export default {
           pagesize: 30,
         })
         .then((res) => {
-          if (res.length) {
+          this.changeData(res)
+        });
+    },
+
+    changeData(res) {
+        if (res.length) {
             let contentList = [];
             let tableDatas = [];
             res.forEach((item, index) => {
@@ -439,7 +446,6 @@ export default {
               }
             });
           }
-        });
     },
 
     /* 右键菜单 */

+ 3 - 3
src/views/economicsOperation/jjyxReport/index.vue

@@ -146,9 +146,9 @@
             /**场站 */
             funGetStation() {
                 let that = this;
-                // this.renderReportPage({
-                //     data: jsonData.data
-                // });
+                this.renderReportPage({
+                    data: jsonData.data
+                });
                 that.stationList = [];
                 that.windStation = ""
                 getWpList().then((res) => {

+ 10 - 1
src/views/economicsOperation/nxfHomePage/index.vue

@@ -124,7 +124,16 @@
                     id: "week",
                     text: "周",
                 }, ],
-                rightTableData: [],
+                rightTableData: [
+                    {
+                        name: '风能利用率年排名',
+                        data: dataJson.data.fnlyl
+                    },
+                    {
+                        name: '设备可利用率年排名',
+                        data: dataJson.data.sbklyl
+                    },
+                ],
                 ForecastPower: [],
                 fnlyl: dataJson.data.fnlyl,
                 zbtqdb: dataJson.data.zbtqdb,

文件差異過大導致無法顯示
+ 4206 - 0
src/views/economicsOperation/singleMachineDeviation/dataJson.json


+ 25 - 21
src/views/economicsOperation/singleMachineDeviation/singleMachineDev.vue

@@ -42,6 +42,7 @@
         getWpList,
         apiGetwinddirection
     } from "@/api/zhbj";
+    import dataJson from './dataJson.json'
     import dayjs from "dayjs";
     import * as XLSX from "xlsx";
     import {
@@ -115,6 +116,7 @@
             };
         },
         created() {
+            this.changeData(dataJson)
             this.funGetStation();
         },
         computed: {
@@ -153,29 +155,31 @@
                     wpid: that.stationId
                 }
                 apiGetwinddirection(params).then(res => {
-                    if (res && res.data) {
-                        debugger
-                        for (const key in res.data) {
-                            const element = res.data[key];
-                            let obj = {
-                                name: key,
-                                january: element[0],
-                                february: element[1],
-                                march: element[2],
-                                april: element[3],
-                                may: element[4],
-                                june: element[5],
-                                july: element[6],
-                                august: element[7],
-                                september: element[8],
-                                october: element[9],
-                                november: element[10],
-                                december: element[11],
-                            }
-                            that.tableData.push(obj)
+                    that.changeData(res)
+                })
+            },
+            changeData(res) {
+                if (res && res.data) {
+                    for (const key in res.data) {
+                        const element = res.data[key];
+                        let obj = {
+                            name: key,
+                            january: element[0],
+                            february: element[1],
+                            march: element[2],
+                            april: element[3],
+                            may: element[4],
+                            june: element[5],
+                            july: element[6],
+                            august: element[7],
+                            september: element[8],
+                            october: element[9],
+                            november: element[10],
+                            december: element[11],
                         }
+                        this.tableData.push(obj)
                     }
-                })
+                }
             },
             seachData() {
                 this.funGetStation();

+ 4 - 4
src/views/economicsOperation/windAnalyse/qxpclfx/dataJson.json

@@ -7,7 +7,7 @@
         "column": [
             {
                 "name": "风机",
-                "field": "windturbineid",
+                "field": "windturbineId",
                 "is_num": false,
                 "is_light": false,
                 "sortable": "thermometerVue"
@@ -21,21 +21,21 @@
             },
             {
                 "name": "环比",
-                "field": "monthdeviationrate",
+                "field": "monthDeviationRate",
                 "is_num": false,
                 "is_light": false,
                 "sortable": true
             },
             {
                 "name": "同比",
-                "field": "yeardeviationrate",
+                "field": "yearDeviationRate",
                 "is_num": false,
                 "is_light": false,
                 "sortable": true
             },
             {
                 "name": "比标杆风机",
-                "field": "standarddeviationrate",
+                "field": "standardDeviationRate",
                 "is_num": false,
                 "is_light": false,
                 "sortable": true

+ 2 - 2
src/views/economicsOperation/windAnalyse/qxqjpcl/index.vue

@@ -53,8 +53,8 @@
                 date: "",
                 showTitle: "曲线区间偏差率",
                 tableLoading: true,
-                tableData: [],
-                tableDataColumn: []
+                tableData: dataJson.data.data,
+                tableDataColumn: dataJson.data.column
             };
         },
         created() {

+ 1 - 1
src/views/economicsOperation/windAnalyse/singleWindAnasyle/index.vue

@@ -214,7 +214,7 @@ export default {
       stationVal: "",
       stationOptions: [],
       pickerTimer: "",
-      singleMachineData: [],
+      singleMachineData: dataJson.data.data.records,
       showBtn: true,
       dialogTitle: "",
       tabIndex: -1,