Forráskód Böngészése

微观选址分析瓦片联调,增加测风塔分析页面

SunZehao 3 hónapja
szülő
commit
d1f86b5283

+ 8 - 0
src/api/zhbj/index.js

@@ -1045,4 +1045,12 @@ export function apiGeWarningeconreportReport(params) {
         url: `WarningReport/econreport?time=${params.reportParamDate}&wtid=${params.windStation}`,
         method: 'get'
     })
+}
+
+export function apiGetwinddirection(params) {
+    return request({
+        baseURL: process.env.VUE_APP_API,
+        url: `winddirecton/machine?wpid=${params.wpid}`,
+        method: 'get'
+    })
 }

+ 10 - 0
src/router/index.js

@@ -855,6 +855,16 @@ export const asyncRoutes = [
                 },
             },
             {
+                path: "singleMachineDev", // 测风塔单机偏差分析
+                name: "singleMachineDev",
+                component: () => import("@/views/economicsOperation/singleMachineDeviation/singleMachineDev"),
+                meta: {
+                    title: "测风塔单机偏差分析",
+                    icon: "svg-cydl",
+                    permissions: ["jn_alarmConfig"],
+                },
+            },
+            {
                 path: "economicsReport", // 经济运行分析报告
                 name: "economicsReport",
                 component: () => import("@/views/economicsOperation/jjyxReport"),

+ 3 - 2
src/views/IntegratedAlarm/yhjyReport/index.vue

@@ -15,8 +15,9 @@
                         placeholder="请选择" />
                 </div>
                 <div class="but">
-                    <el-button type="primary" @click="handleReportOp">查询</el-button>
-                    <el-button style="width: 100px" type="danger" @click="exportPDFop" :loading="loading">导出 PDF
+                    <el-button type="primary" round size="mini" @click="handleReportOp">查询</el-button>
+                    <el-button style="width: 100px" type="danger" round size="mini" @click="exportPDFop"
+                        :loading="loading">导出 PDF
                     </el-button>
                 </div>
             </div>

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

@@ -22,8 +22,9 @@
                         placeholder="请选择" />
                 </div>
                 <div class="but">
-                    <el-button type="primary" @click="handleReportOp">查询</el-button>
-                    <el-button style="width: 100px" type="danger" @click="exportPDFop" :loading="loading">导出 PDF
+                    <el-button type="primary" round size="mini" @click="handleReportOp">查询</el-button>
+                    <el-button style="width: 100px" round size="mini" type="danger" @click="exportPDFop"
+                        :loading="loading">导出 PDF
                     </el-button>
                 </div>
             </div>

+ 315 - 0
src/views/economicsOperation/singleMachineDeviation/singleMachineDev.vue

@@ -0,0 +1,315 @@
+<template>
+    <div class="stationPowerContro" :class="!theme ? 'themeDark' : ''">
+        <div class="main_top">
+            <div class="search-item" style="margin-left: 16px">
+                <span class="label">场站:</span>
+                <div class="search-content">
+                    <el-select v-model="stationId" style="width: 120px" clearable size="mini" placeholder="全部"
+                        popper-class="select" @change="getWindturbineList">
+                        <el-option v-for="item in stationList" :key="item.id" :value="item.id" :label="item.name">
+                        </el-option>
+                    </el-select>
+                </div>
+            </div>
+            <el-button class="buttons" round size="mini" @click="funSubmit">查询</el-button>
+        </div>
+        <div class="stationPowerControTable">
+            <h2 class="tableTitle">{{ stationName }}测风塔单机偏差分析</h2>
+            <span class="tableUnit">单位:风速m/s,风向°</span>
+            <div :style="tableHeight">
+                <div class="tablestyle warn-table" style="margin-top: 5px">
+                    <el-table :data="tableData" v-loading="loading" border style="width: 100%"
+                        :max-height="tableMainHeight" ref="stationPowerTable"
+                        element-loading-background="rgba(0,0,0,.5)"
+                        :header-cell-style="{ 'text-align': 'center', 'font-size': '12px' }" :cell-style="{
+              'font-size': '12px',
+            }" :row-style="{ height: '23px' }">
+                        <el-table-column :prop="item.value" :label="item.name" align="center"
+                            v-for="(item, index) in tableColumn" :key="index">
+                            <template #default="scope">
+                                <span>{{scope.row[item.value]}}</span>
+                            </template>
+                        </el-table-column>
+                    </el-table>
+                </div>
+            </div>
+        </div>
+    </div>
+</template>
+
+<script>
+    import {
+        getWpList,
+        apiGetwinddirection
+    } from "@/api/zhbj";
+    import dayjs from "dayjs";
+    import * as XLSX from "xlsx";
+    import {
+        saveAs
+    } from "file-saver";
+    import * as XLSXD from "xlsx-js-style";
+    import {
+        forIn
+    } from '@antv/x6/lib/util/object/object';
+    export default {
+        data() {
+            return {
+                stationId: "",
+                stationName: "",
+                stationList: [],
+                loading: false,
+                tableData: [],
+                tableColumn: [{
+                        value: "name",
+                        name: "名称",
+                    },
+                    {
+                        value: "january",
+                        name: "一月",
+                    },
+                    {
+                        value: "february",
+                        name: "二月",
+                    },
+                    {
+                        value: "march",
+                        name: "三月",
+                    },
+                    {
+                        value: "april",
+                        name: "四月",
+                    },
+                    {
+                        value: "may",
+                        name: "五月",
+                    },
+                    {
+                        value: "june",
+                        name: "六月",
+                    },
+                    {
+                        value: "july",
+                        name: "七月",
+                    },
+                    {
+                        value: "august",
+                        name: "八月",
+                    },
+                    {
+                        value: "september",
+                        name: "九月",
+                    },
+                    {
+                        value: "october",
+                        name: "十月",
+                    },
+                    {
+                        value: "november",
+                        name: "十一月",
+                    },
+                    {
+                        value: "december",
+                        name: "十二月",
+                    }
+                ]
+            };
+        },
+        created() {
+            this.funGetStation();
+        },
+        computed: {
+            tableHeight() {
+                let height = (document.documentElement.clientHeight - 190) / 2 + "px";
+                return {
+                    width: "100%",
+                    height: height,
+                };
+            },
+            tableMainHeight() {
+                let height = document.documentElement.clientHeight - 180 + "px";
+                return height;
+            },
+        },
+        methods: {
+            /**场站 */
+            funGetStation() {
+                let that = this;
+                that.stationList = [];
+                that.windStation = ""
+                getWpList().then((res) => {
+                    if (res) {
+                        that.stationList = res.data;
+                        if (that.stationList.length) {
+                            that.stationId = that.stationList[0].id;
+                            that.stationName = that.stationList[0].name;
+                            that.getStationData()
+                        }
+                    }
+                });
+            },
+            getStationData() {
+                let that = this;
+                let params = {
+                    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)
+                        }
+                    }
+                })
+            },
+            seachData() {
+                this.funGetStation();
+            },
+        },
+    };
+</script>
+
+<style lang="less">
+    .stationPowerContro {
+        padding: 0 20px 0 20px;
+
+        .main_top {
+            height: 40px;
+            display: flex;
+            align-items: center;
+
+            .search-item {
+                display: flex;
+                margin-right: 10px;
+                max-width: 450px;
+                align-items: center;
+
+                .label {
+                    margin-right: 10px;
+                    text-align: right;
+                    white-space: nowrap;
+                    // width: 60px;
+                }
+
+                .search-content {
+                    flex: 1;
+                }
+            }
+        }
+
+        .stationPowerControSeach {
+            margin-top: 20px;
+
+            .seach_top {
+                display: flex;
+
+                .exceed {
+                    .exceedName {
+                        margin-top: 7px;
+                        font-size: 14px;
+                        margin-left: 10px;
+                    }
+
+                    display: flex;
+                    margin-right: 20px;
+
+                    .el-select,
+                    .el-select__wrapper {
+                        height: 32px;
+                    }
+
+                    .el-date-editor {
+                        height: 32px;
+
+                        .el-input__icon,
+                        .el-range-separator {
+                            line-height: 30px;
+                        }
+                    }
+
+                    .select-trigger {
+                        .el-input {
+                            .el-input__wrapper {
+                                height: 30px;
+                            }
+                        }
+
+                        .el-input__suffix {
+                            .el-input__icon {
+                                line-height: 30px;
+                            }
+                        }
+                    }
+                }
+
+                .el-button {
+                    height: 30px;
+                    padding: 0 20px;
+                    line-height: 5px;
+                }
+            }
+        }
+
+        .stationPowerControTable {
+            .tableTitle {
+                display: flex;
+                justify-content: center;
+                // font-size: 18px;
+                font-weight: 600;
+            }
+
+            .tableUnit {
+                font-size: 14px;
+            }
+        }
+    }
+
+    .themeDark {
+        background-image: none;
+
+        .stationPowerControSeach {
+            .exceedName {
+                color: #fff;
+            }
+        }
+
+        .stationPowerControTable {
+
+            .tableTitle,
+            .tableUnit {
+                color: #fff;
+            }
+        }
+    }
+
+    .themeLight {
+        .stationPowerControSeach {
+            .exceedName {
+                color: #000;
+            }
+        }
+
+        .stationPowerControTable {
+
+            .tableTitle,
+            .tableUnit {
+                color: #000;
+            }
+        }
+    }
+</style>

+ 142 - 83
src/views/economicsOperation/stationAnalyse/posAnalysis/components/leafletMap.vue

@@ -4,6 +4,7 @@
     </div>
 </template>
 <script>
+    // import httpRequest from "@/utils/request.js";
     import httpRequest from "@/tools/request.js";
     import {
         CanvasLabel
@@ -32,36 +33,67 @@
                 layers: [],
                 rightObj: {},
                 areaLayer: null,
-                tilsUrl: "./static/kMapTiles/{z}/{x}/{y}.jpg",
-                canvasLabel: null,
-                markers: null
+                tilsUrl: "./static/kMapTiles/{z}/{x}/{y}.png",
+                ciLayer: null,
+                viewCenterMap: {
+                    GJNY_SXGS_ZZ_FDC_STA: {
+                        lng: 107.86058,
+                        lat: 37.37861
+                    },
+                    GJNY_SXGS_JSL_FDC_STA: {
+                        lng: 108.51853,
+                        lat: 37.45717
+                    },
+                    GJNY_SXGS_XZ_FDC_STA: {
+                        lng: 107.9109,
+                        lat: 37.46585
+                    },
+                    GJNY_SXGS_FSG_FDC_STA: {
+                        lng: 107.85678,
+                        lat: 37.41682
+                    },
+                    GJNY_SXGS_CSL_FDC_STA: {
+                        lng: 108.2031,
+                        lat: 37.2811
+                    },
+                    GJNY_SXGS_LJS_FDC_STA: {
+                        lng: 108.39083,
+                        lat: 37.485
+                    },
+                },
             };
         },
+
         watch: {
             ids(val) {
-                this.layers = [];
-
                 this.funStationPos(val);
                 // this.funStationPosLabel(val)
             },
         },
+
         mounted() {
             this.initMap();
         },
+
+        unmounted() {
+            this.map.remove();
+            this.map = null;
+        },
+
         methods: {
             initMap() {
-                //矢量文本标签渲染器
-                this.canvasLabel = new L.CanvasLabel({
+                // 矢量文本标签渲染器
+                let canvasLabel = new L.CanvasLabel({
                     collisionFlg: true,
                     scale: 2,
                 });
                 this.map = L.map("map", {
-                    renderer: this.canvasLabel,
+                    renderer: canvasLabel,
                     // center: [40.02404009136253, 116.50641060224784], // 地图中心--北京
                     // center: [38.44673272215545, 106.27624511718751], // 地图中心--银川
                     // center: [108.953939, 34.266611], // 地图中心--陕西
                     // center: [109.470962, 34.520632], // 地图中心--渭南
-                    zoom: 18, //缩放比列
+                    zoom: 16, //缩放比列
                     zoomControl: false, //禁用 + - 按钮
                     doubleClickZoom: true, // 禁用双击放大
                     attributionControl: false, // 移除右下角leaflet标识
@@ -94,94 +126,130 @@
                     //     },
                     // ],
                 });
-
-
                 // let name = L.tileLayer(
-                //     "http://webrd01.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=7&x={x}&y={y}&z={z}",
-                // ).addTo(this.map)
+                //   "http://webrd01.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=7&x={x}&y={y}&z={z}"
+                // ).addTo(this.map);
 
                 let name = L.tileLayer(this.tilsUrl, {
                     minZoom: 1,
-                    maxZoom: 18,
+                    maxZoom: 16,
                 }).addTo(this.map);
 
-                // this.setAreaLayer("db", true);
-                // this.setAreaLayer("jb", true);
-                this.setAreaLayer("nx", true);
+                this.setAreaLayer("db", true);
+                this.setAreaLayer("jb", true);
             },
 
             async funStationPos(ids) {
                 let res = null;
-                let tabStr = ""
-
-                // 移除所有 Marker
-                if (this.markers) {
-                    this.markers.clearLayers();
-                }
+                this.rightObj = {};
                 if (ids.length > 0) {
-                    tabStr = "winds"
                     res = await httpRequest.get("/base/windturbine", {
                         params: {
                             wpids: this.ids.join(","),
                         },
                     });
                 } else {
+                    // res = await httpRequest.get("/base/station", {
+                    //     params: {},
+                    // });
                     tabStr = "station"
                     let datas = await httpRequest.get("/benchmarking/wpByCplist?companyids=NX_FGS&type=-1");
                     res = datas.data
                 }
+
                 if (res.code === 200) {
-                    let resdatas = null
-                    resdatas = tabStr === "station" ? res.data : res.data.data
-                    if (resdatas && resdatas.length) {
-                        // 创建一个 LayerGroup 来管理所有的 Marker
-                        this.markers = L.layerGroup().addTo(this.map);
+                    if (res.data && res.data.data && res.data.data.length) {
+                        // 清除现有的 layers
+                        this.layers.forEach((layer) => {
+                            this.map.removeLayer(layer);
+                        });
+                        this.layers = [];
 
+                        const viewCenter =
+                            this.viewCenterMap[res.data.data[0].windpowerstationId] || null;
+
+                        if (!this.ciLayer) {
+                            this.ciLayer = L.canvasIconLayer({}).addTo(this.map);
+                        } else {
+                            this.ciLayer.clearLayers();
+                        }
+
+                        //   let iconUrl = require(`@/assets/images/indexCom/run_Icon.gif`);
                         let iconUrl = require(`@/assets/images/indexCom/fengji.png`);
+                        // const img = new Image();
+                        // img.src = require("@/assets/images/indexCom/run_Icon.gif");
+
+                        for (let i = 0; i < res.data.data.length; i++) {
+                            let item = res.data.data[i];
 
-                        for (let i = 0; i < resdatas.length; i++) {
-                            let item = resdatas[i];
+                            let marker = L.marker(
+                                [Number(item.latitude), Number(item.longitude)], {
+                                    icon: L.divIcon({
+                                            className: "iconSty",
+                                            iconUrl: iconUrl,
+                                            iconSize: [30, 39],
+                                            iconAnchor: [15, 12.5],
+                                        }
+                                        // {
+                                        //   className: "currentMapIcon",
+                                        //   html: `<img src="${img.src}" style="width: 30px; height: 39px;">`,
+                                        //   iconSize: [30, 39],
+                                        //   iconAnchor: [15, 12.5],
+                                        // }
+                                    ),
+                                    data: item,
+                                }
+                            ).bindTooltip(
+                                `
+        <div class="tip-box-top">
+            <div class="item">${item.aname}</div>
+            <div class="item">经度:${item.latitude}°</div>
+            <div class="item">纬度:${item.longitude}°</div>
+            <div class="item">海拔高度:${item.altitude}m</div>
+        </div>`
+                            );
 
                             let latlng = L.latLng(
                                 Number(item.latitude),
                                 Number(item.longitude)
                             );
 
-                            let marker = L.marker(latlng, {
-                                    // title: item.name,
-                                    icon: L.divIcon({
-                                        html: `<div class="custom-icon"><img src="${iconUrl}" alt="Icon"/><span style="color:#000;margin-left:10px">${item.aname}</span></div>`,
-                                        className: "iconSty",
-                                        iconSize: [30, 39],
-                                        iconAnchor: [15, 12.5],
-                                    }),
-                                    // data: item,
-                                })
-                                .bindTooltip(
-                                    `
-                                <div class="tip-box-top">
-                                    <div class="item">${item.aname}风机</div>
-                                    <div class="item">经度:${item.latitude}°</div>
-                                    <div class="item">纬度:${item.longitude}°</div>
-                                    <div class="item">海拔高度:${item.spare3}m</div>
-                                </div>`
-                                )
-                                .addTo(this.map);
+                            let c1 = L.circleMarker(latlng, {
+                                radius: 5,
+                                color: "transparent",
+                                labelStyle: {
+                                    text: item.aname,
+                                    scale: 1.2,
+                                    rotation: 0,
+                                    offsetY: 35,
+                                    fillStyle: "#fff",
+                                    zIndex: i,
+                                },
+                                data: item,
+                            }).addTo(this.map);
+
+                            marker.on("tooltipopen", (e) => {
+                                this.rightObj = item;
+                            });
+
+                            marker.addTo(this.map);
+
+                            this.layers.push(c1);
                             this.layers.push(marker);
-                            // 添加 Marker 到 LayerGroup
-                            this.markers.addLayer(marker);
 
-                            let that = this;
-                            marker.on("mouseover", function onmouseover(e) {
-                                that.rightObj = item;
-                            });
+                            this.ciLayer.addLayer(marker);
                         }
 
                         let center = this.map.getCenter();
                         this.map.panTo([center.lat, center.lng], {
-                            animate: true,
+                            animate: true
                         });
-                        this.map.setView(this.layers[0].getLatLng(), 14);
+
+                        if (viewCenter) {
+                            this.map.setView(viewCenter, 13);
+                        } else if (this.layers.length > 0) {
+                            this.map.setView(this.layers[0].getLatLng(), 13);
+                        }
                     }
                 }
             },
@@ -208,6 +276,8 @@
                 if (res.code === 200) {
                     if (res.data && res.data.length) {
                         this.layers = [];
+                        const viewCenter =
+                            this.viewCenterMap[res.data[0].windpowerstationId] || null;
                         for (let i = 0; i < res.data.length; i++) {
                             let item = res.data[i];
 
@@ -242,7 +312,6 @@
 
                             let that = this;
                             c.on("mouseover", function onmouseover(e) {
-                                console.log("map", item);
                                 that.rightObj = item;
                             });
                         }
@@ -250,7 +319,7 @@
                         this.map.panTo([center.lat, center.lng], {
                             animate: true,
                         });
-                        this.map.setView(this.layers[0].getLatLng(), 13);
+                        this.map.setView(viewCenter || this.layers[0].getLatLng(), 13);
                     }
                 }
             },
@@ -280,7 +349,7 @@
                         type: "error",
                     });
                 } else {
-                    this.layers.forEach((item) => {
+                    this.layers.forEach((item, index) => {
                         if (item.options.data) {
                             if (item.options.data.name.indexOf("风电场") === -1) {
                                 if (
@@ -487,27 +556,7 @@
 
     #map {
         width: 100%;
-        height: 100vh;
-    }
-
-    .custom-icon {
-        display: flex;
-        align-items: center;
-        justify-content: center;
-        background-color: white;
-        border: 1px solid #ccc;
-        padding: 5px;
-        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
-    }
-
-    .custom-icon img {
-        width: 32px;
-        height: 32px;
-        margin-right: 5px;
-    }
-
-    .custom-icon span {
-        font-size: 14px;
+        height: 100%;
     }
 
     .lmap-image {
@@ -541,4 +590,14 @@
         top: 25px;
         left: -250px;
     }
+</style>
+<style lang="less">
+    .mapCom {
+        .currentMapIcon {
+            img {
+                position: absolute;
+                z-index: 1000;
+            }
+        }
+    }
 </style>

+ 544 - 0
src/views/economicsOperation/stationAnalyse/posAnalysis/components/leafletMap1.vue

@@ -0,0 +1,544 @@
+<template>
+    <div class="mapCom">
+        <div id="map"></div>
+    </div>
+</template>
+<script>
+    import httpRequest from "@/tools/request.js";
+    import {
+        CanvasLabel
+    } from "@panzhiyue/leaflet-canvaslabel";
+    import "./leaflet.canvas-markers.js";
+    export default {
+        props: {
+            ids: {
+                type: Array,
+                default: () => {
+                    return [];
+                },
+            },
+            windList: {
+                type: Array,
+                default: () => {
+                    return [];
+                },
+            },
+        },
+        data() {
+            return {
+                map: null,
+                DefaultIcon1: null,
+                layerGroup: [],
+                layers: [],
+                rightObj: {},
+                areaLayer: null,
+                tilsUrl: "./static/kMapTiles/{z}/{x}/{y}.jpg",
+                canvasLabel: null,
+                markers: null
+            };
+        },
+        watch: {
+            ids(val) {
+                this.layers = [];
+
+                this.funStationPos(val);
+                // this.funStationPosLabel(val)
+            },
+        },
+        mounted() {
+            this.initMap();
+        },
+        methods: {
+            initMap() {
+                //矢量文本标签渲染器
+                this.canvasLabel = new L.CanvasLabel({
+                    collisionFlg: true,
+                    scale: 2,
+                });
+                this.map = L.map("map", {
+                    renderer: this.canvasLabel,
+                    // center: [40.02404009136253, 116.50641060224784], // 地图中心--北京
+                    // center: [38.44673272215545, 106.27624511718751], // 地图中心--银川
+                    // center: [108.953939, 34.266611], // 地图中心--陕西
+                    // center: [109.470962, 34.520632], // 地图中心--渭南
+                    zoom: 18, //缩放比列
+                    zoomControl: false, //禁用 + - 按钮
+                    doubleClickZoom: true, // 禁用双击放大
+                    attributionControl: false, // 移除右下角leaflet标识
+                    preferCanvas: true,
+                    contextmenu: true,
+                    contextmenuWidth: 140,
+                    // contextmenuItems: [{
+                    //         text: "功率曲线拟合分析",
+                    //         callback: this.powerLine,
+                    //     },
+                    //     {
+                    //         text: "对风偏差分析",
+                    //         callback: this.windAny,
+                    //     },
+                    //     {
+                    //         text: "曲线偏差率分析",
+                    //         callback: this.qxAny,
+                    //     },
+                    //     {
+                    //         text: "温度与功率分析",
+                    //         callback: this.wdyglAny,
+                    //     },
+                    //     {
+                    //         text: "损失电量分析",
+                    //         callback: this.ssdlAny,
+                    //     },
+                    //     {
+                    //         text: "桨距角分析",
+                    //         callback: this.jjjAny,
+                    //     },
+                    // ],
+                });
+
+
+                // let name = L.tileLayer(
+                //     "http://webrd01.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=7&x={x}&y={y}&z={z}",
+                // ).addTo(this.map)
+
+                let name = L.tileLayer(this.tilsUrl, {
+                    minZoom: 1,
+                    maxZoom: 18,
+                }).addTo(this.map);
+
+                // this.setAreaLayer("db", true);
+                // this.setAreaLayer("jb", true);
+                this.setAreaLayer("nx", true);
+            },
+
+            async funStationPos(ids) {
+                let res = null;
+                let tabStr = ""
+
+                // 移除所有 Marker
+                if (this.markers) {
+                    this.markers.clearLayers();
+                }
+                if (ids.length > 0) {
+                    tabStr = "winds"
+                    res = await httpRequest.get("/base/windturbine", {
+                        params: {
+                            wpids: this.ids.join(","),
+                        },
+                    });
+                } else {
+                    tabStr = "station"
+                    let datas = await httpRequest.get("/benchmarking/wpByCplist?companyids=NX_FGS&type=-1");
+                    res = datas.data
+                }
+                if (res.code === 200) {
+                    let resdatas = null
+                    resdatas = tabStr === "station" ? res.data : res.data.data
+                    if (resdatas && resdatas.length) {
+                        // 创建一个 LayerGroup 来管理所有的 Marker
+                        this.markers = L.layerGroup().addTo(this.map);
+
+                        let iconUrl = require(`@/assets/images/indexCom/fengji.png`);
+
+                        for (let i = 0; i < resdatas.length; i++) {
+                            let item = resdatas[i];
+
+                            let latlng = L.latLng(
+                                Number(item.latitude),
+                                Number(item.longitude)
+                            );
+
+                            let marker = L.marker(latlng, {
+                                    // title: item.name,
+                                    icon: L.divIcon({
+                                        html: `<div class="custom-icon"><img src="${iconUrl}" alt="Icon"/><span style="color:#000;margin-left:10px">${item.aname}</span></div>`,
+                                        className: "iconSty",
+                                        iconSize: [30, 39],
+                                        iconAnchor: [15, 12.5],
+                                    }),
+                                    // data: item,
+                                })
+                                .bindTooltip(
+                                    `
+                                <div class="tip-box-top">
+                                    <div class="item">${item.aname}风机</div>
+                                    <div class="item">经度:${item.latitude}°</div>
+                                    <div class="item">纬度:${item.longitude}°</div>
+                                    <div class="item">海拔高度:${item.spare3}m</div>
+                                </div>`
+                                )
+                                .addTo(this.map);
+                            this.layers.push(marker);
+                            // 添加 Marker 到 LayerGroup
+                            this.markers.addLayer(marker);
+
+                            let that = this;
+                            marker.on("mouseover", function onmouseover(e) {
+                                that.rightObj = item;
+                            });
+                        }
+
+                        let center = this.map.getCenter();
+                        this.map.panTo([center.lat, center.lng], {
+                            animate: true,
+                        });
+                        this.map.setView(this.layers[0].getLatLng(), 14);
+                    }
+                }
+            },
+
+            async funStationPosLabel(ids) {
+                if (this.layers.length > 0) {
+                    for (var i = 0; i < this.layers.length; i++) {
+                        this.map.removeLayer(this.layers[i]);
+                    }
+                    this.layers = [];
+                }
+                let res = null;
+                if (ids.length > 0) {
+                    res = await httpRequest.get("/base/location", {
+                        params: {
+                            ids: this.ids.join(","),
+                        },
+                    });
+                } else {
+                    res = await httpRequest.get("/base/station", {
+                        params: {},
+                    });
+                }
+                if (res.code === 200) {
+                    if (res.data && res.data.length) {
+                        this.layers = [];
+                        for (let i = 0; i < res.data.length; i++) {
+                            let item = res.data[i];
+
+                            let latlng = L.latLng(
+                                Number(item.latitude),
+                                Number(item.longitude)
+                            );
+                            let c = L.circleMarker(latlng, {
+                                    radius: 5,
+                                    color: "#12e799",
+                                    labelStyle: {
+                                        text: item.aname,
+                                        scale: 1,
+                                        rotation: 0,
+                                        offsetY: 15,
+                                        fillStyle: "#000",
+                                        zIndex: i,
+                                    },
+                                    data: item,
+                                })
+                                .bindTooltip(
+                                    `
+                                <div class="tip-box-top">
+                                    <div class="item">${item.aname}</div>
+                                    <div class="item">经度:${item.latitude}°</div>
+                                    <div class="item">纬度:${item.longitude}°</div>
+                                    <div class="item">海拔高度:${item.altitude}m</div>
+                                </div>`
+                                )
+                                .addTo(this.map);
+                            this.layers.push(c);
+
+                            let that = this;
+                            c.on("mouseover", function onmouseover(e) {
+                                console.log("map", item);
+                                that.rightObj = item;
+                            });
+                        }
+                        let center = this.map.getCenter();
+                        this.map.panTo([center.lat, center.lng], {
+                            animate: true,
+                        });
+                        this.map.setView(this.layers[0].getLatLng(), 13);
+                    }
+                }
+            },
+
+            setAreaLayer(jsonName, isBounds) {
+                const wfAllGeoJson = require(`@/assets/${jsonName}.json`);
+                this.areaLayer = L.geoJSON(wfAllGeoJson, {
+                    style: (feature) => {
+                        return {
+                            fillOpacity: 0.1,
+                            fillColor: "rgb(27, 242, 245)",
+                            weight: 2,
+                            color: "rgb(27, 242, 245)",
+                        };
+                    },
+                });
+                this.map.addLayer(this.areaLayer);
+                if (isBounds) {
+                    this.map.fitBounds(this.areaLayer.getBounds());
+                }
+            },
+
+            powerLine(e) {
+                if (!this.rightObj.latitude && !this.rightObj.longitude) {
+                    this.$message({
+                        message: "该坐标系下暂无功率曲线拟合",
+                        type: "error",
+                    });
+                } else {
+                    this.layers.forEach((item) => {
+                        if (item.options.data) {
+                            if (item.options.data.name.indexOf("风电场") === -1) {
+                                if (
+                                    item.options.data.latitude === this.rightObj.latitude &&
+                                    item.options.data.longitude === this.rightObj.longitude
+                                ) {
+                                    this.$emit("rightClick", {
+                                        menuIndex: 0,
+                                        current: this.rightObj,
+                                    });
+                                }
+                            } else {
+                                if (item.options.data.name === this.rightObj.name) {
+                                    this.$message({
+                                        message: "风场暂无功率曲线拟合功能",
+                                        type: "error",
+                                    });
+                                }
+                            }
+                        }
+                    });
+                }
+            },
+
+            windAny(e) {
+                if (!this.rightObj.latitude && !this.rightObj.longitude) {
+                    this.$message({
+                        message: "该坐标系下暂无对风偏差分析",
+                        type: "error",
+                    });
+                } else {
+                    this.layers.forEach((item) => {
+                        if (item.options.data) {
+                            if (item.options.data.name.indexOf("风电场") === -1) {
+                                if (
+                                    item.options.data.latitude === this.rightObj.latitude &&
+                                    item.options.data.longitude === this.rightObj.longitude
+                                ) {
+                                    this.$emit("rightClick", {
+                                        menuIndex: 1,
+                                        current: this.rightObj,
+                                    });
+                                }
+                            } else {
+                                if (item.options.data.name === this.rightObj.name) {
+                                    this.$message({
+                                        message: "风场暂无对风偏差分析功能",
+                                        type: "error",
+                                    });
+                                }
+                            }
+                        }
+                    });
+                }
+            },
+
+            qxAny(e) {
+                if (!this.rightObj.latitude && !this.rightObj.longitude) {
+                    this.$message({
+                        message: "该坐标系下暂无曲线偏差分析",
+                        type: "error",
+                    });
+                } else {
+                    this.layers.forEach((item) => {
+                        if (item.options.data) {
+                            if (item.options.data.name.indexOf("风电场") === -1) {
+                                if (
+                                    item.options.data.latitude === this.rightObj.latitude &&
+                                    item.options.data.longitude === this.rightObj.longitude
+                                ) {
+                                    this.$emit("rightClick", {
+                                        menuIndex: 2,
+                                        current: this.rightObj,
+                                    });
+                                }
+                            } else {
+                                if (item.options.data.name === this.rightObj.name) {
+                                    this.$message({
+                                        message: "风场暂无曲线偏差分析功能",
+                                        type: "error",
+                                    });
+                                }
+                            }
+                        }
+                    });
+                }
+            },
+
+            wdyglAny(e) {
+                if (!this.rightObj.latitude && !this.rightObj.longitude) {
+                    this.$message({
+                        message: "该坐标系下暂无温度与功率分析",
+                        type: "error",
+                    });
+                } else {
+                    this.layers.forEach((item) => {
+                        if (item.options.data) {
+                            if (item.options.data.name.indexOf("风电场") === -1) {
+                                if (
+                                    item.options.data.latitude === this.rightObj.latitude &&
+                                    item.options.data.longitude === this.rightObj.longitude
+                                ) {
+                                    this.$emit("rightClick", {
+                                        menuIndex: 3,
+                                        current: this.rightObj,
+                                    });
+                                }
+                            } else {
+                                if (item.options.data.name === this.rightObj.name) {
+                                    this.$message({
+                                        message: "风场暂无温度与功率分析功能",
+                                        type: "error",
+                                    });
+                                }
+                            }
+                        }
+                    });
+                }
+            },
+
+            ssdlAny(e) {
+                if (!this.rightObj.latitude && !this.rightObj.longitude) {
+                    this.$message({
+                        message: "该坐标系下暂无损失电量分析",
+                        type: "error",
+                    });
+                } else {
+                    this.layers.forEach((item) => {
+                        if (item.options.data) {
+                            if (item.options.data.name.indexOf("风电场") === -1) {
+                                if (
+                                    item.options.data.latitude === this.rightObj.latitude &&
+                                    item.options.data.longitude === this.rightObj.longitude
+                                ) {
+                                    this.$emit("rightClick", {
+                                        menuIndex: 4,
+                                        current: this.rightObj,
+                                    });
+                                }
+                            } else {
+                                if (item.options.data.name === this.rightObj.name) {
+                                    this.$message({
+                                        message: "风场暂无损失电量分析功能",
+                                        type: "error",
+                                    });
+                                }
+                            }
+                        }
+                    });
+                }
+            },
+
+            jjjAny(e) {
+                if (!this.rightObj.latitude && !this.rightObj.longitude) {
+                    this.$message({
+                        message: "该坐标系下暂无桨距角分析",
+                        type: "error",
+                    });
+                } else {
+                    this.layers.forEach((item) => {
+                        if (item.options.data) {
+                            if (item.options.data.name.indexOf("风电场") === -1) {
+                                if (
+                                    item.options.data.latitude === this.rightObj.latitude &&
+                                    item.options.data.longitude === this.rightObj.longitude
+                                ) {
+                                    this.$emit("rightClick", {
+                                        menuIndex: 5,
+                                        current: this.rightObj,
+                                    });
+                                }
+                            } else {
+                                if (item.options.data.name === this.rightObj.name) {
+                                    this.$message({
+                                        message: "风场暂无桨距角分析功能",
+                                        type: "error",
+                                    });
+                                }
+                            }
+                        }
+                    });
+                }
+            },
+        },
+    };
+</script>
+<style scoped lang="less">
+    .mapCom {
+        height: 100%;
+
+        .iconLabel {
+            width: 80px !important;
+        }
+
+        .iconSty {
+            .iconStyClass {
+                width: 50px;
+                height: 100px;
+                position: relative;
+                top: 40px;
+            }
+        }
+    }
+
+    #map {
+        width: 100%;
+        height: 100vh;
+    }
+
+    .custom-icon {
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        background-color: white;
+        border: 1px solid #ccc;
+        padding: 5px;
+        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+    }
+
+    .custom-icon img {
+        width: 32px;
+        height: 32px;
+        margin-right: 5px;
+    }
+
+    .custom-icon span {
+        font-size: 14px;
+    }
+
+    .lmap-image {
+        width: 32px;
+        height: 32px;
+    }
+
+    .lmap-span {
+        display: inline-block;
+        margin-left: 5px;
+        padding: 5px;
+        font-weight: bold;
+        line-height: 20px;
+        font-size: 14px;
+        color: #fff;
+        white-space: nowrap;
+    }
+
+    .lmap-text {
+        display: inline-block;
+        margin-left: 5px;
+        padding: 5px;
+        font-weight: bold;
+        line-height: 20px;
+        font-size: 16px;
+        color: #fff;
+        width: 500px;
+        white-space: nowrap;
+        position: absolute;
+        text-align: center;
+        top: 25px;
+        left: -250px;
+    }
+</style>

+ 34 - 7
src/views/rateAnalysis/index.vue

@@ -2,7 +2,7 @@
   <div class="rateAnalysis" :class="!theme ? 'themeDark' : 'themeLight'">
     <div class="rateAnalysisMain">
       <div class="main_top">
-        <p class="topPsty">对风偏差分析</p>
+        <!-- <p class="topPsty">对风偏差分析</p> -->
         <div class="search-item" style="margin-left: 16px">
           <span class="label">场站:</span>
           <div class="search-content">
@@ -67,6 +67,9 @@
         >
       </div>
       <div class="main">
+        <div class="line">
+            <div class="leftContent"><span>对风偏差分析</span></div>
+        </div>
         <!-- <div class="treeDataMain">
           <tree-cop
             :data="treeData"
@@ -91,17 +94,17 @@
           ></excel-cop>
         </div> -->
         <div class="tableDataMain">
-          <el-tabs v-model="activeTab">
-            <el-tab-pane label="图表展示" name="1"> </el-tab-pane>
+          <!-- <el-tabs v-model="activeTab">
+            <el-tab-pane label="图表展示" name="1"> </el-tab-pane> -->
             <!-- <el-tab-pane label="风时" name="3"> </el-tab-pane> -->
-            <el-tab-pane
+            <!-- <el-tab-pane
               :label="`表格数据${
                 tableData?.length ? ' (' + tableData.length + '个)' : ''
               }`"
               name="2"
               v-if="false"
             >
-            </el-tab-pane>
+            </el-tab-pane> -->
             <el-row v-if="activeTab === '1'" :style="{ height: tableHeight }">
               <el-col
                 :span="12"
@@ -231,7 +234,7 @@
               >
               </fsChart>
             </div>
-          </el-tabs>
+          <!-- </el-tabs> -->
         </div>
       </div>
     </div>
@@ -1696,6 +1699,30 @@ onMounted(() => {
       display: flex;
       width: 100%;
 
+      .line {
+        display: flex;
+        flex-direction: row;
+        align-items: center;
+        justify-content: space-between;
+        width: 100%;
+        height: 50px;
+        .leftContent {
+            width: 242px;
+            height: 41px;
+            display: flex;
+            align-items: center;
+            background: url("~@/assets/imgs/title_left_bg.png") no-repeat;
+
+            span {
+            font-size: 16px;
+            font-family: Microsoft YaHei;
+            font-weight: 400;
+            color: #05bb4c;
+            margin-left: 25px;
+            }
+        }
+        }
+
       .treeDataMain,
       .excelDataMain,
       .tableDataMain {
@@ -1757,7 +1784,7 @@ onMounted(() => {
 
       .tableDataMain {
         margin-top: 5px;
-        background: #212223;
+        // background: #212223;
       }
     }
   }