|
@@ -2,13 +2,13 @@
|
|
|
<div class="map">
|
|
|
<HeaderNav
|
|
|
ref="header"
|
|
|
- :wpId="fcId"
|
|
|
+ :wpId="wpId"
|
|
|
@firstRender="firstRender"
|
|
|
@typeFlag="typeFlag"
|
|
|
:isShows="false"
|
|
|
/>
|
|
|
<!-- 山西左侧信息 -->
|
|
|
- <div v-if="mapName !== 'KGDL_FGS'">
|
|
|
+ <div v-if="currentTitle != '全国'">
|
|
|
<div class="security-days safe_power">
|
|
|
<div class="text">安全天数:</div>
|
|
|
<div class="num">
|
|
@@ -319,7 +319,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 全国左侧信息 -->
|
|
|
- <div class="leftBox" v-if="mapName == 'KGDL_FGS'">
|
|
|
+ <div class="leftBox" v-if="currentTitle == '全国'">
|
|
|
<div
|
|
|
:class="
|
|
|
$store.state.themeName === 'light' ? 'new-home-light' : 'new-home'
|
|
@@ -635,7 +635,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 展示当前场站名称 -->
|
|
|
- <div class="name-box" v-if="mapName != 'KGDL_FGS'">
|
|
|
+ <div class="name-box" v-if="currentTitle != '全国'">
|
|
|
<div class="name-box-title">
|
|
|
{{ currentTitle }}
|
|
|
</div>
|
|
@@ -660,19 +660,18 @@
|
|
|
<div class="map-img">
|
|
|
<!-- 全国 -->
|
|
|
<SvgMapNX
|
|
|
- v-if="mapName === 'KGDL_FGS'"
|
|
|
+ v-if="currentTitle == '全国'"
|
|
|
:homeSuspensionWindowsData="homeSuspensionWindowsData"
|
|
|
:mapList="mapList"
|
|
|
:show="showType"
|
|
|
- :data="sourceMap"
|
|
|
+ :data="StationinformationData"
|
|
|
@clickLabel="clickLabel"
|
|
|
>
|
|
|
</SvgMapNX>
|
|
|
|
|
|
<!-- 山西 -->
|
|
|
<SX
|
|
|
- v-if="mapName !== 'KGDL_FGS'"
|
|
|
- :clickFlag="mapName"
|
|
|
+ v-if="currentTitle != '全国'"
|
|
|
:showType="showType"
|
|
|
:companyid="companyid"
|
|
|
:data="StationinformationData"
|
|
@@ -683,7 +682,7 @@
|
|
|
<!-- 全国右侧信息 -->
|
|
|
<div
|
|
|
class="right"
|
|
|
- v-if="mapName == 'KGDL_FGS'"
|
|
|
+ v-if="currentTitle == '全国'"
|
|
|
:class="activeTab == -1 || activeTab == -2 ? 'top-distance' : ''"
|
|
|
>
|
|
|
<el-dialog
|
|
@@ -979,7 +978,7 @@
|
|
|
</Row>
|
|
|
</div>
|
|
|
|
|
|
- <div v-if="mapName !== 'KGDL_FGS'">
|
|
|
+ <div v-if="currentTitle != '全国'">
|
|
|
<!-- 山西右侧信息 -->
|
|
|
<div class="card wind_card">
|
|
|
<el-row>
|
|
@@ -1319,6 +1318,9 @@ import {
|
|
|
FindRealtimeInfo,
|
|
|
FindUtilizationhours,
|
|
|
FindPlanproject,
|
|
|
+ FindBasicDataInfo,
|
|
|
+ FindPowerInfo,
|
|
|
+ FindProjectplan,
|
|
|
} from "@/api/home/home.js";
|
|
|
import dayjs from "dayjs";
|
|
|
import windChartCom from "./windChartCom.vue";
|
|
@@ -1342,35 +1344,54 @@ export default {
|
|
|
windChartCom,
|
|
|
BarCharts,
|
|
|
},
|
|
|
- props: {
|
|
|
- wpId: { type: String, default: "KGDL_FGS0" },
|
|
|
- homeSuspensionWindowsData: { type: Object, default: () => {} },
|
|
|
- mapList: { type: Array, default: () => [] },
|
|
|
- ForecastPowerNewHome_gf: { type: Array, default: () => [] },
|
|
|
- ForecastPowerNewHome_fc: { type: Array, default: () => [] },
|
|
|
- qyPower: { type: Object, default: () => {} },
|
|
|
- powerDataHome: { type: Object, default: () => {} },
|
|
|
- StationinformationData: { type: Object, default: () => {} },
|
|
|
- CurveValues: { type: Object, default: () => {} },
|
|
|
- },
|
|
|
-
|
|
|
- mounted() {
|
|
|
- this.fcId = this.wpId;
|
|
|
- this.sourceMap = this.data;
|
|
|
- },
|
|
|
+ mounted() {},
|
|
|
// 数据
|
|
|
data() {
|
|
|
return {
|
|
|
- mapName: "KGDL_FGS",
|
|
|
- switchShow: false, //接入情况弹窗
|
|
|
+ activeTab: 0, //当前tab
|
|
|
+ barList: [
|
|
|
+ {
|
|
|
+ name: "",
|
|
|
+ value: [],
|
|
|
+ },
|
|
|
+ ], //发电量利用小时柱状图
|
|
|
+ currentTitle: "全国", //当前地图名称
|
|
|
+ currents: 0, //当前层级
|
|
|
+ CurveValues: {
|
|
|
+ value: [
|
|
|
+ {
|
|
|
+ title: "",
|
|
|
+ value: [],
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ }, //24小时功率曲线
|
|
|
+ companyid: "",
|
|
|
+ companyname: "",
|
|
|
+ chartsData: [], //实时负荷曲线
|
|
|
+ colors: ["#1c99ff", "#05BB4C"],
|
|
|
+ dialogVisible: false, //实时负荷弹窗开关
|
|
|
+ dialogElectric: false, //发电量、利用小时弹窗开关
|
|
|
+ electronType: "day", //日月年切换值
|
|
|
+ flag: false, //判断场站id
|
|
|
+ ForecastPowerNewHome_fc: [], //全国的风电发电量列表
|
|
|
+ ForecastPowerNewHome_gf: [], //全国的光伏发电量列表
|
|
|
fdlList: [], //山西区域实时负荷列表
|
|
|
+ homeSuspensionWindowsData: [], //全国区域所有地区数据
|
|
|
+ historyWpId: "", //历史场站id
|
|
|
+ mapList: [
|
|
|
+ { text: "山西", code: "sxqyxx" },
|
|
|
+ { text: "内蒙", code: "nmqyxx" },
|
|
|
+ { text: "新疆", code: "xjqyxx" },
|
|
|
+ { text: "河北", code: "hbqyxx" },
|
|
|
+ { text: "陕西", code: "xsqyxx" },
|
|
|
+ { text: "山东", code: "sdqyxx" },
|
|
|
+ { text: "西藏", code: "xzqyxx" },
|
|
|
+ ],
|
|
|
penetrateType: 0, //24小时功率曲线开关
|
|
|
- fcId: "", //场站
|
|
|
+ powerDataHome: {},
|
|
|
+ qyPower: {},
|
|
|
+ ratio: 1,
|
|
|
showType: "all",
|
|
|
- sourceMap: {},
|
|
|
- activeTab: 0, //当前tab
|
|
|
- currentTitle: "", //当前名称
|
|
|
- currents: 0, //当前层级
|
|
|
stationList: [
|
|
|
{
|
|
|
name: "全部",
|
|
@@ -1381,26 +1402,18 @@ export default {
|
|
|
wpId: "SXJ_RGN",
|
|
|
},
|
|
|
],
|
|
|
- flag: false,
|
|
|
- companyid: "",
|
|
|
- companyname: "",
|
|
|
+ switchShow: false, //接入情况弹窗
|
|
|
showName: "",
|
|
|
- dialogVisible: false, //实时负荷弹窗开关
|
|
|
- chartsData: [],
|
|
|
- electronType: "D",
|
|
|
+ StationinformationData: [],
|
|
|
showkey: "",
|
|
|
- dialogElectric: false, //发电量、利用小时弹窗开关
|
|
|
- units: ["万kWh"],
|
|
|
- ratio: 1,
|
|
|
- colors: ["#1c99ff", "#05BB4C"],
|
|
|
- barList: [
|
|
|
- {
|
|
|
- name: "",
|
|
|
- value: [],
|
|
|
- },
|
|
|
- ],
|
|
|
+
|
|
|
type: "fc", //发电量展示类型
|
|
|
tabShow: 0,
|
|
|
+ timmer: null, // 计时器
|
|
|
+ timmer2: null,
|
|
|
+ units: ["万kWh"],
|
|
|
+ wpId: "KGDL_FGS",
|
|
|
+ wpIds: "KGDL_FGS0",
|
|
|
};
|
|
|
},
|
|
|
emits: {
|
|
@@ -1409,6 +1422,335 @@ export default {
|
|
|
},
|
|
|
// 函数
|
|
|
methods: {
|
|
|
+ // 点击地图展示类型
|
|
|
+ mapClick(wpId, activeTab) {
|
|
|
+ clearInterval(this.timmer);
|
|
|
+ clearInterval(this.timmer2);
|
|
|
+ this.timmer = null;
|
|
|
+ this.timmer2 = null;
|
|
|
+ this.activeTab = activeTab;
|
|
|
+ this.wpId = wpId;
|
|
|
+ this.wpIds =
|
|
|
+ wpId.includes("FDC") || wpId.includes("GDC") ? wpId : wpId + activeTab;
|
|
|
+ this.requestData();
|
|
|
+ this.findProjectPlan();
|
|
|
+ this.timmer = setInterval(() => {
|
|
|
+ this.requestData();
|
|
|
+ }, 5000);
|
|
|
+
|
|
|
+ this.timmer2 = setInterval(() => {
|
|
|
+ this.findProjectPlan(); //发电量
|
|
|
+ if (this.penetrateType == 3) {
|
|
|
+ this.getData(this.wpIds); //24小时功率曲线
|
|
|
+ }
|
|
|
+ }, 15 * 60 * 1000);
|
|
|
+ },
|
|
|
+ mapClicks(wpId, activeTab) {
|
|
|
+ this.historyWpId = wpId;
|
|
|
+ this.mapClick(wpId, activeTab);
|
|
|
+ },
|
|
|
+ mapClickBack(wpId, activeTab) {
|
|
|
+ this.historyWpId = wpId;
|
|
|
+ this.activeTab = activeTab;
|
|
|
+ this.mapClick(this.historyWpId, activeTab);
|
|
|
+ },
|
|
|
+ currentActiveTab(penetrateType) {
|
|
|
+ this.penetrateType = penetrateType;
|
|
|
+ if (penetrateType === 3) {
|
|
|
+ this.getData(this.wpIds);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 请求服务
|
|
|
+ requestData() {
|
|
|
+ FindBasicDataInfo({ wpId: this.wpIds }).then(({ data }) => {
|
|
|
+ this.StationinformationData = data;
|
|
|
+ if (Object.keys(data).length) {
|
|
|
+ let mapInfos = [];
|
|
|
+ this.mapList.forEach((item) => {
|
|
|
+ for (var key in data.sytc) {
|
|
|
+ if (item.code == key) {
|
|
|
+ data.sytc[key].name = item.text;
|
|
|
+ mapInfos.push({ ...data.sytc[key] });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ mapInfos.forEach((element) => {
|
|
|
+ element.industryState = true;
|
|
|
+ element.companyState = true;
|
|
|
+ if (element.name == "山西") {
|
|
|
+ if (!Object.hasOwn(element, "sxgszzjrl")) {
|
|
|
+ element.companyState = false;
|
|
|
+ }
|
|
|
+ if (!Object.hasOwn(element, "sxcyzzjrl")) {
|
|
|
+ element.industryState = false;
|
|
|
+ }
|
|
|
+ this.homeSuspensionWindowsData.sxqyxx = { ...element };
|
|
|
+ } else if (element.name == "新疆") {
|
|
|
+ if (!Object.hasOwn(element, "xjgszzjrl")) {
|
|
|
+ element.companyState = false;
|
|
|
+ }
|
|
|
+ if (!Object.hasOwn(element, "xjcyzzjrl")) {
|
|
|
+ element.industryState = false;
|
|
|
+ }
|
|
|
+ this.homeSuspensionWindowsData.xjqyxx = { ...element };
|
|
|
+ } else if (element.name == "内蒙") {
|
|
|
+ if (!Object.hasOwn(element, "nmgszzjrl")) {
|
|
|
+ element.companyState = false;
|
|
|
+ }
|
|
|
+ if (!Object.hasOwn(element, "nmcyzzjrl")) {
|
|
|
+ element.industryState = false;
|
|
|
+ }
|
|
|
+ this.homeSuspensionWindowsData.nmqyxx = { ...element };
|
|
|
+ } else if (element.name == "西藏") {
|
|
|
+ if (!Object.hasOwn(element, "xzgszzjrl")) {
|
|
|
+ element.companyState = false;
|
|
|
+ }
|
|
|
+ if (!Object.hasOwn(element, "xzcyzzjrl")) {
|
|
|
+ element.industryState = false;
|
|
|
+ }
|
|
|
+ this.homeSuspensionWindowsData.xzqyxx = { ...element };
|
|
|
+ } else if (element.name == "山东") {
|
|
|
+ if (!Object.hasOwn(element, "sdgszzjrl")) {
|
|
|
+ element.companyState = false;
|
|
|
+ }
|
|
|
+ if (!Object.hasOwn(element, "sdcyzzjrl")) {
|
|
|
+ element.industryState = false;
|
|
|
+ }
|
|
|
+ this.homeSuspensionWindowsData.sdqyxx = { ...element };
|
|
|
+ } else if (element.name == "陕西") {
|
|
|
+ if (!Object.hasOwn(element, "xsgszzjrl")) {
|
|
|
+ element.companyState = false;
|
|
|
+ }
|
|
|
+ if (!Object.hasOwn(element, "xscyzzjrl")) {
|
|
|
+ element.industryState = false;
|
|
|
+ }
|
|
|
+ this.homeSuspensionWindowsData.xsqyxx = { ...element };
|
|
|
+ } else if (element.name == "河北") {
|
|
|
+ if (!Object.hasOwn(element, "hbgszzjrl")) {
|
|
|
+ element.companyState = false;
|
|
|
+ }
|
|
|
+ if (!Object.hasOwn(element, "hbcyzzjrl")) {
|
|
|
+ element.industryState = false;
|
|
|
+ }
|
|
|
+ this.homeSuspensionWindowsData.hbqyxx = { ...element };
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ this.powerDataHome = [
|
|
|
+ {
|
|
|
+ title: "清洁能源",
|
|
|
+ value: (data?.qt?.sjgl / 1000).toFixed(2),
|
|
|
+ dialogTitle: "清洁能源",
|
|
|
+ subUrl: "genreset/findGLDetail",
|
|
|
+ targetName: "bzgl",
|
|
|
+ dialogType: "powerLineChart",
|
|
|
+ max: 3000,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "风电",
|
|
|
+ value: (data?.qt?.fdsjgl / 1000).toFixed(2),
|
|
|
+ dialogTitle: "功率详情",
|
|
|
+ subUrl: "genreset/findGLDetail",
|
|
|
+ targetName: "bzgl",
|
|
|
+ dialogType: "powerLineChart",
|
|
|
+ max: 3000,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "光伏",
|
|
|
+ value: (data?.qt?.gfsjgl / 1000).toFixed(2),
|
|
|
+ dialogTitle: "保证功率详情",
|
|
|
+ subUrl: "genreset/findGLDetail",
|
|
|
+ targetName: "bzgl",
|
|
|
+ dialogType: "powerLineChart",
|
|
|
+ max: 3000,
|
|
|
+ },
|
|
|
+ ];
|
|
|
+
|
|
|
+ let sbztmap = {
|
|
|
+ fd: {},
|
|
|
+ gf: {},
|
|
|
+ };
|
|
|
+ for (var key in data.mxztmap) {
|
|
|
+ let a = key.substring(3, key.length);
|
|
|
+ if (key.includes("gf_")) {
|
|
|
+ sbztmap.gf[a] = data.mxztmap[key];
|
|
|
+ } else if (key.includes("fd_")) {
|
|
|
+ sbztmap.fd[a] = data.mxztmap[key];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.StationinformationData.sbztmap = sbztmap;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 发电量
|
|
|
+ findProjectPlan() {
|
|
|
+ FindProjectplan({ wpId: this.wpIds }).then(({ data }) => {
|
|
|
+ this.qyPower = data.proplanmap;
|
|
|
+ this.ForecastPowerNewHome_fc = [
|
|
|
+ [
|
|
|
+ {
|
|
|
+ name: "日发电量",
|
|
|
+ id: "day",
|
|
|
+ value: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.fd_r_sjdl < 0
|
|
|
+ ? 0
|
|
|
+ : (data?.proplanmap?.fd_r_sjdl / 10000).toFixed(2)
|
|
|
+ : 0,
|
|
|
+ color: 1,
|
|
|
+ total: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.fd_r_jhdl < 0
|
|
|
+ ? 0
|
|
|
+ : data?.proplanmap?.fd_r_jhdl
|
|
|
+ : 0,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ {
|
|
|
+ name: "月发电量",
|
|
|
+ id: "month",
|
|
|
+ value: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.fd_y_sjdl < 0
|
|
|
+ ? 0
|
|
|
+ : (data?.proplanmap?.fd_y_sjdl / 10000).toFixed(2)
|
|
|
+ : 0,
|
|
|
+ color: 1,
|
|
|
+ total: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.fd_y_jhdl < 0
|
|
|
+ ? 0
|
|
|
+ : data?.proplanmap?.fd_y_jhdl
|
|
|
+ : 0,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ {
|
|
|
+ name: "年发电量",
|
|
|
+ id: "year",
|
|
|
+ value: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.fd_n_sjdl < 0
|
|
|
+ ? 0
|
|
|
+ : (data?.proplanmap?.fd_n_sjdl / 10000).toFixed(2)
|
|
|
+ : 0,
|
|
|
+ color: 0,
|
|
|
+ total: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.fd_n_jhdl < 0
|
|
|
+ ? 0
|
|
|
+ : data?.proplanmap?.fd_n_jhdl
|
|
|
+ : 0,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ ];
|
|
|
+ this.ForecastPowerNewHome_gf = [
|
|
|
+ [
|
|
|
+ {
|
|
|
+ name: "日发电量",
|
|
|
+ id: "day",
|
|
|
+ value: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.gf_r_sjdl < 0
|
|
|
+ ? 0
|
|
|
+ : (data?.proplanmap?.gf_r_sjdl / 10000).toFixed(2)
|
|
|
+ : 0,
|
|
|
+ color: 1,
|
|
|
+ total: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.gf_r_jhdl < 0
|
|
|
+ ? 0
|
|
|
+ : data?.proplanmap?.gf_r_jhdl
|
|
|
+ : 0,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ {
|
|
|
+ name: "月发电量",
|
|
|
+ id: "month",
|
|
|
+ value: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.gf_y_sjdl < 0
|
|
|
+ ? 0
|
|
|
+ : (data?.proplanmap?.gf_y_sjdl / 10000).toFixed(2)
|
|
|
+ : 0,
|
|
|
+ color: 1,
|
|
|
+ total: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.gf_y_jhdl < 0
|
|
|
+ ? 0
|
|
|
+ : data?.proplanmap?.gf_y_jhdl
|
|
|
+ : 0,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ {
|
|
|
+ name: "年发电量",
|
|
|
+ id: "year",
|
|
|
+ value: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.gf_n_sjdl < 0
|
|
|
+ ? 0
|
|
|
+ : (data?.proplanmap?.gf_n_sjdl / 10000).toFixed(2)
|
|
|
+ : 0,
|
|
|
+ color: 0,
|
|
|
+ total: data?.proplanmap
|
|
|
+ ? data?.proplanmap?.gf_n_jhdl < 0
|
|
|
+ ? 0
|
|
|
+ : data?.proplanmap?.gf_n_jhdl
|
|
|
+ : 0,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ ];
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 获取场站24小时功率图
|
|
|
+ getData(wpId) {
|
|
|
+ FindPowerInfo({ id: wpId }).then((res) => {
|
|
|
+ if (res.data) {
|
|
|
+ let Powertrend = {
|
|
|
+ // 图表所用单位
|
|
|
+ units: ["(万KWh)", "(风速)"],
|
|
|
+ value: [
|
|
|
+ {
|
|
|
+ title: "保证功率",
|
|
|
+ smooth: true, // 使用单位
|
|
|
+ value: [],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "理论功率",
|
|
|
+ smooth: true, // 使用单位
|
|
|
+ value: [],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "实际功率",
|
|
|
+ smooth: true, // 使用单位
|
|
|
+ value: [],
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
+
|
|
|
+ Powertrend.value[0].value = res.data.map((item) => {
|
|
|
+ return {
|
|
|
+ dateTime: dayjs()
|
|
|
+ .startOf("date")
|
|
|
+ .add(item.hours, "hour")
|
|
|
+ .format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ value: item.bzgl,
|
|
|
+ };
|
|
|
+ });
|
|
|
+ Powertrend.value[1].value = res.data.map((item) => {
|
|
|
+ return {
|
|
|
+ dateTime: dayjs()
|
|
|
+ .startOf("date")
|
|
|
+ .add(item.hours, "hour")
|
|
|
+ .format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ value: item.llgl,
|
|
|
+ };
|
|
|
+ });
|
|
|
+ Powertrend.value[2].value = res.data.map((item) => {
|
|
|
+ return {
|
|
|
+ dateTime: dayjs()
|
|
|
+ .startOf("date")
|
|
|
+ .add(item.hours, "hour")
|
|
|
+ .format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ value: item.sjgl,
|
|
|
+ };
|
|
|
+ });
|
|
|
+ this.CurveValues = Powertrend.value;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
firstRender(activeTab, showType, wpId, name) {
|
|
|
this.activeTab = activeTab;
|
|
|
this.tabShow = activeTab;
|
|
@@ -1417,50 +1759,26 @@ export default {
|
|
|
let fcId = wpId;
|
|
|
if ((wpId.includes("FDC") || wpId.includes("GDC")) && this.flag) {
|
|
|
if (name != "清洁能源") {
|
|
|
- // 如果公司不是清洁能源,查找当前wpid对应的公司id并赋值给wpId
|
|
|
- for (var key in this.StationinformationData.station) {
|
|
|
- if (key == wpId) {
|
|
|
- fcId = this.StationinformationData.station[key].companyid;
|
|
|
- }
|
|
|
- }
|
|
|
+ fcId = this.historyWpId;
|
|
|
} else {
|
|
|
fcId = "SXJ_RGN";
|
|
|
}
|
|
|
this.flag = true;
|
|
|
this.penetrateType = 3;
|
|
|
this.currents = 1;
|
|
|
- this.mapName =
|
|
|
- this.currents == 0
|
|
|
- ? "KGDL_FGS"
|
|
|
- : name
|
|
|
- ? name
|
|
|
- : this.stationList[this.currents].wpId;
|
|
|
- this.companyid = fcId;
|
|
|
- this.companyname = name;
|
|
|
- this.currentTitle = name;
|
|
|
- } else {
|
|
|
- this.mapName =
|
|
|
- this.currents == 0
|
|
|
- ? "KGDL_FGS"
|
|
|
- : name
|
|
|
- ? name
|
|
|
- : this.stationList[this.currents].wpId;
|
|
|
- this.companyid = wpId;
|
|
|
- this.companyname = name;
|
|
|
- this.currentTitle = name;
|
|
|
}
|
|
|
-
|
|
|
- this.$emit("mapClicks", fcId, activeTab);
|
|
|
- this.$emit("currentActiveTab", this.penetrateType);
|
|
|
+ this.companyid = fcId;
|
|
|
+ this.companyname = name;
|
|
|
+ this.currentTitle = name || "全国";
|
|
|
+ this.mapClicks(fcId, activeTab);
|
|
|
+ this.currentActiveTab(this.penetrateType);
|
|
|
},
|
|
|
backMap(wpId, planBtnName) {
|
|
|
this.penetrateType = this.currents == 0 ? 0 : 3;
|
|
|
this.currents--;
|
|
|
- this.mapName =
|
|
|
- this.currents == 0 ? "KGDL_FGS" : this.stationList[this.currents].wpId;
|
|
|
this.currentTitle =
|
|
|
this.currents == 0
|
|
|
- ? ""
|
|
|
+ ? "全国"
|
|
|
: this.companyname
|
|
|
? this.companyname
|
|
|
: planBtnName;
|
|
@@ -1471,8 +1789,8 @@ export default {
|
|
|
? this.companyid
|
|
|
: wpId;
|
|
|
this.tabShow = this.activeTab;
|
|
|
- this.$emit("mapClickBack", wpIds, this.activeTab);
|
|
|
- this.$emit("currentActiveTab", this.penetrateType);
|
|
|
+ this.mapClickBack(wpIds, this.activeTab);
|
|
|
+ this.currentActiveTab(this.penetrateType);
|
|
|
},
|
|
|
clickLabel(wpId, planBtnName, penetrateType) {
|
|
|
this.penetrateType = penetrateType;
|
|
@@ -1480,8 +1798,7 @@ export default {
|
|
|
if (this.currents > 1) {
|
|
|
this.currents = 2;
|
|
|
}
|
|
|
- this.mapName = wpId;
|
|
|
- this.fcId =
|
|
|
+ this.wpId =
|
|
|
wpId.includes("FDC") || wpId.includes("GDC")
|
|
|
? wpId
|
|
|
: this.companyname
|
|
@@ -1493,11 +1810,10 @@ export default {
|
|
|
: this.companyname
|
|
|
? this.companyname
|
|
|
: planBtnName;
|
|
|
-
|
|
|
- this.$emit("mapClick", this.fcId, this.activeTab);
|
|
|
+ this.mapClick(this.wpId, this.activeTab);
|
|
|
this.tabShow = wpId.includes("FDC") ? -1 : wpId.includes("GDC") ? -2 : 0;
|
|
|
this.flag = wpId.includes("FDC") || wpId.includes("GDC") ? true : false;
|
|
|
- this.$emit("currentActiveTab", penetrateType);
|
|
|
+ this.currentActiveTab(penetrateType);
|
|
|
},
|
|
|
handleClick(uniformCode, title) {
|
|
|
let key = "";
|
|
@@ -1521,8 +1837,8 @@ export default {
|
|
|
FindRealtimeInfo({
|
|
|
uniformCode,
|
|
|
wpId:
|
|
|
- this.fcId +
|
|
|
- (this.fcId.includes("FDC") || this.fcId.includes("GDC")
|
|
|
+ this.wpId +
|
|
|
+ (this.wpId.includes("FDC") || this.wpId.includes("GDC")
|
|
|
? ""
|
|
|
: this.activeTab),
|
|
|
}).then(({ data }) => {
|
|
@@ -1532,7 +1848,7 @@ export default {
|
|
|
dateTime: dayjs()
|
|
|
.startOf("date")
|
|
|
.add(item.hours, "hour")
|
|
|
- .format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ .format("MM-DD HH:mm"),
|
|
|
value: item[key],
|
|
|
};
|
|
|
});
|
|
@@ -1695,10 +2011,16 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
},
|
|
|
+ unmounted() {
|
|
|
+ clearInterval(this.timmer);
|
|
|
+ clearInterval(this.timmer2);
|
|
|
+ this.timmer = null;
|
|
|
+ this.timmer2 = null;
|
|
|
+ },
|
|
|
watch: {
|
|
|
- wpId(res) {
|
|
|
- this.fcId = res;
|
|
|
- },
|
|
|
+ // wpId(res) {
|
|
|
+ // this.fcId = res;
|
|
|
+ // },
|
|
|
qyPower(val) {
|
|
|
if (Object.keys(val).length) {
|
|
|
let data = val;
|
|
@@ -1754,9 +2076,6 @@ export default {
|
|
|
];
|
|
|
}
|
|
|
},
|
|
|
- data(res) {
|
|
|
- this.sourceMap = res;
|
|
|
- },
|
|
|
},
|
|
|
computed: {
|
|
|
// 实时风速
|