浏览代码

1.地图风机乱移动bug改;
2.故障和预警分析雷达图改饼图;
3.运行指标性能分析弹窗数据不变bug改;【有几个字段未匹配,需后续跟进】

mw_666 3 年之前
父节点
当前提交
4176627537

+ 13 - 0
src/components/arcgis/arcgis.vue

@@ -455,6 +455,19 @@
         },
         mounted() {
             // 渲染后
+			basemap = null;
+            map = null;
+            view = null;
+            point_graphicsLayer = null;
+            line_graphicsLayer = null;
+            text_graphicsLayer = null;
+            img_graphicsLayer = null;
+            html_graphicsLayer = null;
+            point_graphics = [];
+            line_graphics = [];
+            text_graphics = [];
+            img_graphics = [];
+            html_graphics = [];
             this.initMap();
         },
         beforeUpdate() {

+ 49 - 52
src/views/NewPages/alarm-center-gzfx.vue

@@ -1,32 +1,28 @@
 <template>
 	<div>
 		<el-row>
-			<el-col :span="14">
+			<el-col :span="24">
 				<panel :title="'日雷达图'" class="radar-panel" :icon="'svg-wind-site'">
 					<div class="wind-info">
-						<radar-chart :width="'100%'" :height="'729px'" :value="rzdfsData" />
+						<dual-pie-chart height="40vh" width='55vh' :innerData="rzdfsData" :outerData="rzdfsData" />
 					</div>
 				</panel>
 			</el-col>
-			<el-col :span="10">
-				<el-row>
-					<el-col :span="24">
-						<panel :title="'月雷达图'" class="radar-panel" :icon="'svg-wind-site'">
-							<div class="wind-info">
-								<radar-chart :width="'100%'" :height="'350px'" :value="yzdfsData" />
-							</div>
-						</panel>
-					</el-col>
-				</el-row>
-				<el-row>
-					<el-col :span="24">
-						<panel :title="'年雷达图'" class="radar-panel" :icon="'svg-wind-site'">
-							<div class="wind-info">
-								<radar-chart :width="'100%'" :height="'350px'" :value="nzdfsData" />
-							</div>
-						</panel>
-					</el-col>
-				</el-row>
+		</el-row>
+		<el-row>
+			<el-col :span="12">
+				<panel :title="'月雷达图'" class="radar-panel" :icon="'svg-wind-site'">
+					<div class="wind-info">
+						<dual-pie-chart height="32vh" width='55vh' :innerData="yzdfsData" :outerData="yzdfsData" />
+					</div>
+				</panel>
+			</el-col>
+			<el-col :span="12">
+				<panel :title="'年雷达图'" class="radar-panel" :icon="'svg-wind-site'">
+					<div class="wind-info">
+						<dual-pie-chart height="32vh" width='55vh' :innerData="nzdfsData" :outerData="nzdfsData" />
+					</div>
+				</panel>
 			</el-col>
 		</el-row>
 	</div>
@@ -34,11 +30,11 @@
 
 <script>
 	import panel from "@/components/coms/panel/panel.vue";
-	import RadarChart from "@/components/chart/radar/radar-chart.vue";
+	import DualPieChart from "@/components/chart/pie/dual-pie-chart.vue";
 	export default {
 		components: {
 			panel,
-			RadarChart
+			DualPieChart
 		},
 		props:{
 			date: {
@@ -52,18 +48,9 @@
 		},
 		data() {
 			return {
-				rzdfsData: {
-					indicator: ["N0", "N1", "N2", "N3", "N4", "N5"],
-					data: [{value: [44200, 14200, 20000, 35000, 50000, 38000],name: "",}, ],
-				},
-				yzdfsData: {
-					indicator: ["N0", "N1", "N2", "N3", "N4", "N5"],
-					data: [{value: [44200, 14200, 20000, 35000, 50000, 38000],name: "",}, ],
-				},
-				nzdfsData: {
-					indicator: ["N0", "N1", "N2", "N3", "N4", "N5"],
-					data: [{value: [44200, 14200, 20000, 35000, 50000, 38000],name: "",}, ],
-				},
+				rzdfsData: [],
+				yzdfsData: [],
+				nzdfsData: [],
 			}
 		},
 		created() {
@@ -74,31 +61,41 @@
 				var that = this;
 				that.API.requestData({
 					method: "GET",
-					subUrl: "radar/gzfx",
+					subUrl: "radar/yjfx",
 					showLoading:true,
 					data:{
-						stId:that.wpid,
-						Date:that.date
+						stationid:that.wpid,
+						date:that.date
 					},
 					success(res) {
-						let key = ['变桨','变频器','齿轮箱','发电机','风机其它','滑环','机舱加热','控制','冷却','偏航','液压','主轴'];
-						that.nzdfsData = {
-							indicator:key,
-							data:[{value:Object.values(res.data[0][0])}]
-						}
-						that.yzdfsData = {
-							indicator:key,
-							data:[{value:Object.values(res.data[1][0])}]
-						}
-						that.rzdfsData = {
-							indicator:key,
-							data:[{value:Object.values(res.data[2][0])}]
-						}
+						let key = ['测风系统','传动链','发电机','变桨系统','齿轮箱','液压系统','偏航系统','机舱','其它','塔底柜'];
+						let year = Object.values(res.data[0][0]),
+							month = Object.values(res.data[1][0]),
+							day = Object.values(res.data[2][0]);
+						let yearData = [],
+							monthData = [],
+							dayData = [];
+						key.forEach((ele,index)=>{
+							yearData.push({
+							  name: ele,
+							  value: parseFloat(year[index])
+							})
+							monthData.push({
+							  name: ele,
+							  value: parseFloat(month[index])
+							})
+							dayData.push({
+							  name: ele,
+							  value: parseFloat(day[index])
+							})
+						})
+						that.nzdfsData = yearData;
+						that.yzdfsData = monthData;
+						that.rzdfsData = dayData;
 					},
 				});
 			}
 		},
-
 	};
 </script>
 

+ 49 - 51
src/views/NewPages/alarm-center-yjfx.vue

@@ -1,32 +1,28 @@
 <template>
 	<div>
 		<el-row>
-			<el-col :span="14">
+			<el-col :span="24">
 				<panel :title="'日雷达图'" class="radar-panel" :icon="'svg-wind-site'">
 					<div class="wind-info">
-						<radar-chart :width="'100%'" :height="'729px'" :value="rzdfsData" />
+						<dual-pie-chart height="40vh" width='55vh' :innerData="rzdfsData" :outerData="rzdfsData" />
 					</div>
 				</panel>
 			</el-col>
-			<el-col :span="10">
-				<el-row>
-					<el-col :span="24">
-						<panel :title="'月雷达图'" class="radar-panel" :icon="'svg-wind-site'">
-							<div class="wind-info">
-								<radar-chart :width="'100%'" :height="'350px'" :value="yzdfsData" />
-							</div>
-						</panel>
-					</el-col>
-				</el-row>
-				<el-row>
-					<el-col :span="24">
-						<panel :title="'年雷达图'" class="radar-panel" :icon="'svg-wind-site'">
-							<div class="wind-info">
-								<radar-chart :width="'100%'" :height="'350px'" :value="nzdfsData" />
-							</div>
-						</panel>
-					</el-col>
-				</el-row>
+		</el-row>
+		<el-row>
+			<el-col :span="12">
+				<panel :title="'月雷达图'" class="radar-panel" :icon="'svg-wind-site'">
+					<div class="wind-info">
+						<dual-pie-chart height="30vh" width='55vh' :innerData="yzdfsData" :outerData="yzdfsData" />
+					</div>
+				</panel>
+			</el-col>
+			<el-col :span="12">
+				<panel :title="'年雷达图'" class="radar-panel" :icon="'svg-wind-site'">
+					<div class="wind-info">
+						<dual-pie-chart height="30vh" width='55vh' :innerData="nzdfsData" :outerData="nzdfsData" />
+					</div>
+				</panel>
 			</el-col>
 		</el-row>
 	</div>
@@ -34,11 +30,11 @@
 
 <script>
 	import panel from "@/components/coms/panel/panel.vue";
-	import RadarChart from "@/components/chart/radar/radar-chart.vue";
+	import DualPieChart from "@/components/chart/pie/dual-pie-chart.vue";
 	export default {
 		components: {
 			panel,
-			RadarChart
+			DualPieChart
 		},
 		props:{
 			date: {
@@ -52,18 +48,9 @@
 		},
 		data() {
 			return {
-				rzdfsData: {
-					indicator: ["N0", "N1", "N2", "N3", "N4", "N5"],
-					data: [{value: [44200, 14200, 20000, 35000, 50000, 38000],name: "",}, ],
-				},
-				yzdfsData: {
-					indicator: ["N0", "N1", "N2", "N3", "N4", "N5"],
-					data: [{value: [44200, 14200, 20000, 35000, 50000, 38000],name: "",}, ],
-				},
-				nzdfsData: {
-					indicator: ["N0", "N1", "N2", "N3", "N4", "N5"],
-					data: [{value: [44200, 14200, 20000, 35000, 50000, 38000],name: "",}, ],
-				},
+				rzdfsData: [],
+				yzdfsData: [],
+				nzdfsData: [],
 			}
 		},
 		created() {
@@ -74,26 +61,37 @@
 				var that = this;
 				that.API.requestData({
 					method: "GET",
-					subUrl: "radar/yjfx",
+					subUrl: "radar/gzfx",
 					showLoading:true,
 					data:{
-						stationid:that.wpid,
-						date:that.date
+						stId:that.wpid,
+						Date:that.date
 					},
 					success(res) {
-						let key = ['测风系统','传动链','发电机','变桨系统','齿轮箱','液压系统','偏航系统','机舱','其它','塔底柜'];
-						that.nzdfsData = {
-							indicator:key,
-							data:[{value:Object.values(res.data[0][0])}]
-						}
-						that.yzdfsData = {
-							indicator:key,
-							data:[{value:Object.values(res.data[1][0])}]
-						}
-						that.rzdfsData = {
-							indicator:key,
-							data:[{value:Object.values(res.data[2][0])}]
-						}
+						let key = ['变桨','变频器','齿轮箱','发电机','风机其它','滑环','机舱加热','控制','冷却','偏航','液压','主轴'];
+						let year = Object.values(res.data[0][0]),
+							month = Object.values(res.data[1][0]),
+							day = Object.values(res.data[2][0]);
+						let yearData = [],
+							monthData = [],
+							dayData = [];
+						key.forEach((ele,index)=>{
+							yearData.push({
+							  name: ele,
+							  value: parseFloat(year[index])
+							})
+							monthData.push({
+							  name: ele,
+							  value: parseFloat(month[index])
+							})
+							dayData.push({
+							  name: ele,
+							  value: parseFloat(day[index])
+							})
+						})
+						that.nzdfsData = yearData;
+						that.yzdfsData = monthData;
+						that.rzdfsData = dayData;
 					},
 				});
 			}

+ 32 - 22
src/views/WindSite/pages/Info/Info.vue

@@ -144,28 +144,38 @@ export default {
         },
         success(res) {
           let WindSites = [];
-
-          res.data.forEach((ele, index) => {
-            WindSites.push({
-              id: String(index),
-              text: ele.wpName,
-              children: [],
-            });
-          });
-
-          res.data.forEach((pEle, pIndex) => {
-            pEle.fjls[0].forEach((cEle) => {
-              WindSites[pIndex].children.push({
-                id: cEle.wtId,
-                wpId: cEle.wpId,
-                text: cEle.wtnum,
-                color: that.getColor(cEle.fjzt),
-              });
-            });
-          });
-
-          that.WindSites = WindSites;
-
+		if(that.WindSites.length){
+			res.data.forEach((pEle, pIndex) => {
+				that.WindSites[pIndex].children = [];
+			  pEle.fjls[0].forEach((cEle) => {
+			    that.WindSites[pIndex].children.push({
+			      id: cEle.wtId,
+			      wpId: cEle.wpId,
+			      text: cEle.wtnum,
+			      color: that.getColor(cEle.fjzt),
+			    });
+			  });
+			});
+		}else{
+			res.data.forEach((ele, index) => {
+			  WindSites.push({
+			    id: String(index),
+			    text: ele.wpName,
+			    children: [],
+			  });
+			});
+			res.data.forEach((pEle, pIndex) => {
+			  pEle.fjls[0].forEach((cEle) => {
+			    WindSites[pIndex].children.push({
+			      id: cEle.wtId,
+			      wpId: cEle.wpId,
+			      text: cEle.wtnum,
+			      color: that.getColor(cEle.fjzt),
+			    });
+			  });
+			});
+			that.WindSites = WindSites;
+		}
           if (res.data.length) {
             that.wtId = that.wtId || res.data[0].fjls[0][0].wtId;
             that.getWtInfo();

+ 1 - 1
src/views/WindSite/pages/Map.vue

@@ -42,7 +42,7 @@
         </div>
         <div class="sub-title-item">
           <img src="../../../assets/map/fan/black.png" />
-          <span class="sub-title gray">离线台数{{wpId}}</span>
+          <span class="sub-title gray">离线台数</span>
           <span class="sub-count font-num gray">{{ wpnumMap.lxts }}</span>
         </div>
       </div>

+ 1 - 46
src/views/singleAnalysis/index.vue

@@ -51,23 +51,13 @@
       </ComTable>
     </div>
     <el-dialog
-      title="切入切出风速整合历史"
-      v-model="dialogShow"
-      width="85%"
-      top="10vh"
-      custom-class="modal"
-      :close-on-click-modal="true"
-      @closed="dialogType = ''"
-    >
-      test
-    </el-dialog>
-    <el-dialog
       :title="wtId + '号风机' + year + '年' + month + '月运行指标性能分析'"
       v-model="dialogVisible"
       width="70%"
       top="10vh"
       custom-class="modal"
       :close-on-click-modal="false"
+	  :destroy-on-close='true'
     >
       <ZnzhFx :wtId="wtId" :year="year" :month="month" />
     </el-dialog>
@@ -101,7 +91,6 @@ export default {
       recorddate: new Date(new Date().getTime() - 3600 * 1000 * 24).formatDate(
         "yyyy-MM-dd"
       ),
-      dialogShow: false,
       tableDataEnd: [], //合计
       tableData: {
         column: [
@@ -228,18 +217,6 @@ export default {
             is_light: false,
             sortable: true,
           },
-          // {
-          //   name: "操作",
-          //   field: "",
-          //   is_num: false,
-          //   is_light: false,
-          //   template() {
-          // 			return "<el-button type='text' style='cursor: pointer;'>详情</el-button>";
-          // 	},
-          //   click(e, row){
-          //     that.getOutputspeedHistoryList(row)
-          //   }
-          // }
         ],
         data: [],
       },
@@ -300,28 +277,6 @@ export default {
         });
       }
     },
-
-    getOutputspeedHistoryList(item) {
-      let that = this;
-      that.API.requestData({
-        method: "POST",
-        subUrl: "outputspeed/outputspeedhistorylist",
-        data: {
-          wpId: item.windpowerstationid,
-          wtId: item.windturbineid,
-          beginDate: new Date().formatDate("yyyy-MM") + "-01",
-          endDate: new Date().formatDate("yyyy-MM-dd"),
-        },
-        success(res) {
-          res.data.forEach((ele) => {
-            ele.time = new Date(ele.recorddate).formatDate("yyyy-MM-dd");
-          });
-          that.tableHistoryData.data = res.data;
-          that.dialogShow = true;
-        },
-      });
-    },
-
     search() {
       this.getOutputSpeedList(this.wpId);
     },

+ 27 - 39
src/views/singleAnalysis/znzhfx.vue

@@ -28,45 +28,32 @@
     </el-row>
     <div class="mg-b-16 anliz-des">
       <div>
-        本月{{ wtId }}号风机风机设备利用小时数{{
-          tableVal.byzb && tableVal.byzb.lyxs
-        }}小时、同比{{
-          tableVal.tpzb && tableVal.tpzb.lyxs
-        }}小时,设备可利用率{{ tableVal.byzb && tableVal.byzb.sbklyl }}%、同比{{
-          tableVal.tpzb && tableVal.tpzb.sbklyl
-        }}%, 等效可用系数{{ tableVal.byzb && tableVal.byzb.dxklyxs }}%、同比{{
-          tableVal.tpzb && tableVal.tpzb.dxklyxs
-        }}%,静风频率达到{{ tableVal.byzb && tableVal.byzb.jfpl }}%、同比{{
-          tableVal.tpzb && tableVal.tpzb.jfpl
-        }}%, 机组功率特性一致性系数达到{{
-          tableVal.byzb && tableVal.byzb.glyzxxs
-        }}%、同比{{ tableVal.tpzb && tableVal.tpzb.glyzxxs }}%。
-        <br />
-        {{ wtId }}风机{{ year }}年{{ month }}月平均风速{{
-          tableVal.byzb && tableVal.byzb.fs
-        }}m/s、同比{{ tableVal.tpzb && tableVal.tpzb.fs }}m/s,
-        小风平均切入风速{{ tableVal.byzb && tableVal.byzb.xfqr }}m/s、同比{{
-          tableVal.tpzb && tableVal.tpzb.xfqr
-        }}m/s, 有效风时数{{ tableVal.byzb && tableVal.byzb.yxfss }}小时、同比{{
-          tableVal.tpzb && tableVal.tpzb.yxfss
-        }}小时, 实际发电电量{{
-          tableVal.byzb && tableVal.byzb.fdl
-        }}万kwh、同比{{ tableVal.tpzb && tableVal.tpzb.fdl }}万kwh,同比增长率{{
-          tableVal.tbzb && tableVal.tbzb.fdl
-        }}%, 各项损失电量累计{{
-          tableVal.byzb && tableVal.byzb.llfdl - tableVal.byzb.fdl
-        }}万kwh、同比{{
-          tableVal.tpzb && tableVal.tpzb.llfdl - tableVal.tpzb.fdl
-        }}万kwh,同比增长率{{
-          tableVal.tbzb && tableVal.byzb.llfdl - tableVal.tbzb.fdl
-        }}%, 理论发电量{{
-          tableVal.byzb && tableVal.byzb.llfdl
-        }}万kwh,实际发电量与理论发电量相差{{
-          tableVal.tbzb && tableVal.tbzb.llfdl
-        }}万kwh。
-        <br />
-        本月静风频率
-        %,月累计静风时长0.00小时,月累计待机小时116.44小时,待机占比48.51%。
+        本月{{ wtId }}号风机风机设备利用小时数{{ tableVal.byzb && tableVal.byzb.lyxs }}小时、
+		同比{{ tableVal.tqzb && tableVal.tqzb.lyxs }}小时,
+		设备可利用率{{ tableVal.byzb && tableVal.byzb.sbklyl }}%、
+		同比{{ tableVal.tqzb && tableVal.tqzb.sbklyl }}%;
+		等效可用系数{{ tableVal.byzb && tableVal.byzb.dxklyxs }}%、
+		同比{{ tableVal.tqzb && tableVal.tqzb.dxklyxs }}%;
+		静风频率达到{{ tableVal.byzb && tableVal.byzb.jfpl }}%、
+		同比{{ tableVal.tqzb && tableVal.tqzb.jfpl }}%;
+		机组功率特性一致性系数达到{{ tableVal.byzb && tableVal.byzb.glyzxxs }}%、
+		同比{{ tableVal.tqzb && tableVal.tqzb.glyzxxs }}%。 <br />
+        {{ wtId }}风机{{ year }}年{{ month }}
+		月平均风速{{ tableVal.byzb && tableVal.byzb.fs }}m/s、
+		同比{{ tableVal.tqzb && tableVal.tqzb.fs }}m/s;
+        小风平均切入风速{{ tableVal.byzb && tableVal.byzb.xfqr }}m/s、
+		同比{{ tableVal.tqzb && tableVal.tqzb.xfqr }}m/s;
+		有效风时数{{ tableVal.byzb && tableVal.byzb.yxfss }}小时、
+		同比{{ tableVal.tqzb && tableVal.tqzb.yxfss }}小时;
+		实际发电电量{{ tableVal.byzb && tableVal.byzb.fdl }}万kwh、
+		同比{{ tableVal.tqzb && tableVal.tqzb.fdl }}万kwh,
+		同比增长率{{ tableVal.tbzb && (tableVal.tbzb.fdl).toFixed(2) }}%;
+		各项损失电量累计{{ tableVal.byzb && (tableVal.byzb.llfdl - tableVal.byzb.fdl).toFixed(2) }}万kwh、
+		同比{{ tableVal.tqzb && tableVal.tqzb.llfdl - tableVal.tqzb.fdl }}万kwh,
+		同比增长率{{ tableVal.tbzb && (tableVal.byzb.llfdl - tableVal.tbzb.fdl).toFixed(2) }}%;
+		理论发电量{{ tableVal.byzb && tableVal.byzb.llfdl }}万kwh,
+		实际发电量与理论发电量相差{{ tableVal.tbzb && tableVal.tbzb.llfdl }}万kwh。 <br />
+        本月静风频率{{ tableVal.byzb && tableVal.byzb.jfpl }}%,月累计静风时长0.00小时,月累计待机小时116.44小时,待机占比48.51%。
       </div>
     </div>
     <div class="mg-b-16">
@@ -418,6 +405,7 @@ export default {
       console.warn(data.data);
       const res = data.data;
       this.tableVal = data.data;
+	  console.log(data.data)
       console.warn(this.tableVal);
       let arr = [];
       let keyarr = Object.keys(res.byzb);