master
parent
8c5366c9c8
commit
be606ff614
|
@ -123,7 +123,7 @@
|
||||||
<rateLine
|
<rateLine
|
||||||
:rateDate="rateDate_cur"
|
:rateDate="rateDate_cur"
|
||||||
:keysv="key2"
|
:keysv="key2"
|
||||||
v-if="treeAreaId"
|
v-if="rateDate_cur"
|
||||||
></rateLine>
|
></rateLine>
|
||||||
</div>
|
</div>
|
||||||
<div class="infotitle_box">
|
<div class="infotitle_box">
|
||||||
|
@ -474,15 +474,18 @@ const getRateDate = (treeAreaId: string) => {
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
console.log(res, "res");
|
console.log(res, "res");
|
||||||
|
|
||||||
if (res?.data.result.length) {
|
if (res.data.result.length>0) {
|
||||||
rateDate_cur = res?.data.result;
|
rateDate_cur = res?.data.result;
|
||||||
// console.log(res, "res");
|
// console.log(res, "res");
|
||||||
} else {
|
} else {
|
||||||
ElMessage({
|
// ElMessage({
|
||||||
message: "Congrats, this is a success message.",
|
|
||||||
type: "success",
|
// message: "",
|
||||||
plain: true,
|
// type: "success",
|
||||||
});
|
// plain: true,
|
||||||
|
// });
|
||||||
|
console.log('暂无数据负载率');
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// let rateDate = rateJSONData as any;
|
// let rateDate = rateJSONData as any;
|
||||||
|
|
|
@ -1,176 +1,174 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="OneLine" ref="OneLine"></div>
|
<div class="OneLine" ref="OneLine"></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import {
|
import {
|
||||||
ref,
|
ref,
|
||||||
inject,
|
inject,
|
||||||
onBeforeUnmount,
|
onBeforeUnmount,
|
||||||
getCurrentInstance,
|
getCurrentInstance,
|
||||||
onMounted,
|
onMounted,
|
||||||
watchEffect,
|
watchEffect,
|
||||||
} from "vue";
|
} from "vue";
|
||||||
import transformFontSize from "@/hooks/transFormSize.ts";
|
import transformFontSize from "@/hooks/transFormSize.ts";
|
||||||
import "echarts/lib/component/dataZoom";
|
import "echarts/lib/component/dataZoom";
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
drawOneLine(props.echartArr);
|
drawOneLine(props.echartArr);
|
||||||
});
|
});
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
echartArr: any[];
|
echartArr: any[];
|
||||||
}>();
|
}>();
|
||||||
// 获取echart挂载的DOM节点
|
// 获取echart挂载的DOM节点
|
||||||
const OneLine: any = ref();
|
const OneLine: any = ref();
|
||||||
|
|
||||||
// 获取当前组件实例
|
// 获取当前组件实例
|
||||||
const { proxy }: any = getCurrentInstance();
|
const { proxy }: any = getCurrentInstance();
|
||||||
|
|
||||||
const drawOneLine = (arr: any) => {
|
const drawOneLine = (arr: any) => {
|
||||||
let myChart = proxy.$echarts.init(OneLine.value);
|
let myChart = proxy.$echarts.init(OneLine.value);
|
||||||
|
|
||||||
myChart.clear();
|
myChart.clear();
|
||||||
const option = {
|
const option = {
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: "axis",
|
trigger: "axis",
|
||||||
// axisPointer: { type: 'cross' }
|
// axisPointer: { type: 'cross' }
|
||||||
textStyle: {
|
textStyle: {
|
||||||
color: "#FFFFFF",
|
color: "#FFFFFF",
|
||||||
},
|
},
|
||||||
// padding: transformFontSize(15),
|
// padding: transformFontSize(15),
|
||||||
backgroundColor: "rgba(0,163,166,.9)", //设置自定义背景
|
backgroundColor: "rgba(0,163,166,.9)", //设置自定义背景
|
||||||
borderColor: "rgba(0,163,166,.9)",
|
borderColor: "rgba(0,163,166,.9)",
|
||||||
borderRadius: 5,
|
borderRadius: 5,
|
||||||
|
|
||||||
formatter: function (param: any) {
|
formatter: function (param: any) {
|
||||||
let str = `
|
let str = `
|
||||||
<div style="width:100%:height:100%">
|
<div style="width:100%:height:100%">
|
||||||
<div style="display:flex;justify-content:space-between;"> ${
|
<div style="display:flex;justify-content:space-between;"> ${
|
||||||
param[0].name.split(" ")[0]
|
param[0].name.split(" ")[0]
|
||||||
}</div>
|
}</div>
|
||||||
${getDom(param)}
|
${getDom(param)}
|
||||||
</div>`;
|
</div>`;
|
||||||
function getDom(param: any) {
|
function getDom(param: any) {
|
||||||
let newStr = "";
|
let newStr = "";
|
||||||
param.forEach((item: any) => {
|
param.forEach((item: any) => {
|
||||||
newStr += `<div style="display:flex;"><div>${
|
newStr += `<div style="display:flex;"><div>${
|
||||||
item.seriesName
|
item.seriesName
|
||||||
}:</div><div>${
|
}:</div><div>${
|
||||||
item.value === undefined ? "0" : item.value
|
item.value === undefined ? "0" : item.value
|
||||||
}kW</div></div>`;
|
}kW</div></div>`;
|
||||||
});
|
});
|
||||||
return newStr;
|
return newStr;
|
||||||
}
|
}
|
||||||
return str;
|
return str;
|
||||||
},
|
|
||||||
},
|
},
|
||||||
legend: {
|
},
|
||||||
top: "0%",
|
legend: {
|
||||||
right: "5%",
|
top: "0%",
|
||||||
orient: "vertical",
|
right: "5%",
|
||||||
data: ["总功率",],
|
orient: "vertical",
|
||||||
itemWidth: transformFontSize(40),
|
data: ["总功率"],
|
||||||
itemHeight: transformFontSize(18),
|
itemWidth: transformFontSize(40),
|
||||||
itemGap:transformFontSize(8),
|
itemHeight: transformFontSize(18),
|
||||||
textStyle: {
|
itemGap: transformFontSize(8),
|
||||||
fontSize: transformFontSize(35),
|
textStyle: {
|
||||||
color: "#FFFFFF",
|
fontSize: transformFontSize(35),
|
||||||
},
|
color: "#FFFFFF",
|
||||||
},
|
},
|
||||||
grid: {
|
},
|
||||||
top: "25%",
|
grid: {
|
||||||
left: "8%",
|
top: "25%",
|
||||||
right: "8%",
|
left: "8%",
|
||||||
bottom: "13%",
|
right: "8%",
|
||||||
|
bottom: "13%",
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: "category",
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
alignWithLabel: true,
|
||||||
},
|
},
|
||||||
xAxis: {
|
boundaryGap: false,
|
||||||
type: "category",
|
axisLabel: {
|
||||||
axisTick: {
|
color: "#fff",
|
||||||
show: false,
|
fontSize: transformFontSize(35),
|
||||||
alignWithLabel: true,
|
padding: [0, 0, 0, 30],
|
||||||
},
|
// formatter: function (param: any) {
|
||||||
boundaryGap: false,
|
// return param.split(' ')[1].split(':')[0] + ':' + param.split(' ')[1].split(':')[1]
|
||||||
axisLabel: {
|
// },
|
||||||
color: "#fff",
|
|
||||||
fontSize: transformFontSize(35),
|
|
||||||
padding: [0, 0, 0, 30],
|
|
||||||
// formatter: function (param: any) {
|
|
||||||
// return param.split(' ')[1].split(':')[0] + ':' + param.split(' ')[1].split(':')[1]
|
|
||||||
// },
|
|
||||||
},
|
|
||||||
// data: ["03:00", "06:00", "09:00", "12:00", "15:00", "18:00", "24:00"],
|
|
||||||
data: arr.map((rtime) => rtime?.timeStamp.slice(-5)),
|
|
||||||
|
|
||||||
},
|
},
|
||||||
yAxis: {
|
// data: ["03:00", "06:00", "09:00", "12:00", "15:00", "18:00", "24:00"],
|
||||||
splitLine: {
|
data: arr.map((rtime) => rtime?.timeStamp.slice(-5)),
|
||||||
show: false,
|
},
|
||||||
},
|
yAxis: {
|
||||||
axisLine: {
|
splitLine: {
|
||||||
show: true, //y轴轴线
|
show: false,
|
||||||
},
|
|
||||||
type: "value",
|
|
||||||
name: "kW",
|
|
||||||
// min: 0,
|
|
||||||
// max: 100,
|
|
||||||
nameTextStyle: {
|
|
||||||
//y轴name的颜色
|
|
||||||
color: "#fff",
|
|
||||||
fontSize: transformFontSize(35),
|
|
||||||
padding: [0, 40, 0, 0],
|
|
||||||
},
|
|
||||||
position: "left",
|
|
||||||
axisLabel: {
|
|
||||||
//刻度标签文字的颜色大小
|
|
||||||
color: "#fff",
|
|
||||||
fontSize: transformFontSize(35),
|
|
||||||
formatter: "{value}",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
series: [
|
axisLine: {
|
||||||
{
|
show: true, //y轴轴线
|
||||||
name: "总功率",
|
},
|
||||||
type: "line",
|
type: "value",
|
||||||
barWidth: 2, // 柱子宽度核心代码
|
name: "kW",
|
||||||
smooth: true,
|
// min: 0,
|
||||||
showSymbol: false,
|
// max: 100,
|
||||||
itemStyle: {
|
nameTextStyle: {
|
||||||
color: "rgba(18, 231, 227, 1)",
|
//y轴name的颜色
|
||||||
},
|
color: "#fff",
|
||||||
areaStyle: {
|
fontSize: transformFontSize(35),
|
||||||
normal: {
|
padding: [0, 40, 0, 0],
|
||||||
color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
},
|
||||||
{
|
position: "left",
|
||||||
offset: 0,
|
axisLabel: {
|
||||||
color: "rgba(18, 231, 227, 0.4)",
|
//刻度标签文字的颜色大小
|
||||||
},
|
color: "#fff",
|
||||||
|
fontSize: transformFontSize(35),
|
||||||
{
|
formatter: "{value}",
|
||||||
offset: 1,
|
},
|
||||||
|
},
|
||||||
color: "rgba(18, 231, 227, 0.01)",
|
series: [
|
||||||
},
|
{
|
||||||
]),
|
name: "总功率",
|
||||||
},
|
type: "line",
|
||||||
|
barWidth: 2, // 柱子宽度核心代码
|
||||||
|
smooth: true,
|
||||||
|
showSymbol: false,
|
||||||
|
itemStyle: {
|
||||||
|
color: "rgba(18, 231, 227, 1)",
|
||||||
|
},
|
||||||
|
areaStyle: {
|
||||||
|
normal: {
|
||||||
|
color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||||
|
{
|
||||||
|
offset: 0,
|
||||||
|
color: "rgba(18, 231, 227, 0.4)",
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
offset: 1,
|
||||||
|
|
||||||
|
color: "rgba(18, 231, 227, 0.01)",
|
||||||
|
},
|
||||||
|
]),
|
||||||
},
|
},
|
||||||
|
},
|
||||||
data: arr.map((yitem) => yitem.p),
|
data: arr.map((yitem) => yitem.p),
|
||||||
|
|
||||||
// data: [20, 42, 41, 24, 40, 30, 10],
|
// data: [20, 42, 41, 24, 40, 30, 10],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
|
||||||
myChart.setOption(option);
|
|
||||||
|
|
||||||
// 根据页面大小自动响应图表大小
|
|
||||||
window.addEventListener("resize", function () {
|
|
||||||
myChart.resize();
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
</script>
|
myChart.setOption(option);
|
||||||
|
|
||||||
<style scoped>
|
// 根据页面大小自动响应图表大小
|
||||||
.OneLine {
|
window.addEventListener("resize", function () {
|
||||||
height: 100%;
|
myChart.resize();
|
||||||
width: 100%;
|
});
|
||||||
}
|
};
|
||||||
</style>
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.OneLine {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
@ -81,7 +81,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="val">9999</div>
|
<div class="val">{{ total_cur }}</div>
|
||||||
<span>kWh</span>
|
<span>kWh</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -98,7 +98,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="val">9999</div>
|
<div class="val">{{ power35kv }}</div>
|
||||||
<span>kWh</span>
|
<span>kWh</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -115,7 +115,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="val">9999</div>
|
<div class="val">{{ power10kv }}</div>
|
||||||
<span>kWh</span>
|
<span>kWh</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -132,7 +132,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="val">9999</div>
|
<div class="val">{{ power380V }}</div>
|
||||||
<span>kWh</span>
|
<span>kWh</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -140,7 +140,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="infotitle"><span>实时发电量曲线</span></div>
|
<div class="infotitle"><span>实时发电量曲线</span></div>
|
||||||
<div class="info2">
|
<div class="info2">
|
||||||
<powerLine></powerLine>
|
<powerLine :cur_pvArr="cur_pvArr" v-if="cur_pvArrFlag"></powerLine>
|
||||||
</div>
|
</div>
|
||||||
<div class="infotitle"><span>实时功率曲线</span></div>
|
<div class="infotitle"><span>实时功率曲线</span></div>
|
||||||
<div class="info3">
|
<div class="info3">
|
||||||
|
@ -217,18 +217,62 @@ import timePvLine from "./timePvLine.vue";
|
||||||
import { useNow, useDateFormat } from "@vueuse/core";
|
import { useNow, useDateFormat } from "@vueuse/core";
|
||||||
import { id } from "element-plus/es/locale/index.mjs";
|
import { id } from "element-plus/es/locale/index.mjs";
|
||||||
import { curpower_api } from "@/api/pvPage/pvApi";
|
import { curpower_api } from "@/api/pvPage/pvApi";
|
||||||
|
import { pvApi } from '@/api/Osp/svgApi'
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
let Objinput = { orgID: "8af8470a47aad8e20147aad92e400335" }; //全部 获取光伏实时发电量
|
||||||
|
|
||||||
let Objinput={orgID: "8af8470a47aad8e20147aad92e400335"} //全部 获取光伏实时发电量
|
|
||||||
getCurves(Objinput); //获取城南的接口{orgID}
|
getCurves(Objinput); //获取城南的接口{orgID}
|
||||||
|
getpv() //光伏功率曲线
|
||||||
});
|
});
|
||||||
// 获取光伏实时发电量
|
// 当日累计发电量
|
||||||
|
let total_cur = ref("0");
|
||||||
|
let power35kv = ref("0");
|
||||||
|
let power10kv = ref("0");
|
||||||
|
let power380V = ref("0");
|
||||||
|
let cur_pvArrFlag=ref(false)
|
||||||
|
let cur_pvArr=reactive([]);
|
||||||
|
// 获取光伏实时发电量
|
||||||
const getCurves = (datares: any) => {
|
const getCurves = (datares: any) => {
|
||||||
curpower_api(datares).then((res) => {
|
curpower_api(datares)
|
||||||
console.log("res", res);
|
.then((res) => {
|
||||||
});
|
console.log("res", res);
|
||||||
|
//实时量测信息
|
||||||
|
if (res.data) {
|
||||||
|
if (res.data.total) {
|
||||||
|
total_cur.value = res.data.total;
|
||||||
|
}
|
||||||
|
if (res.data["380V"]) {
|
||||||
|
power380V.value = res.data["380V"];
|
||||||
|
}
|
||||||
|
if (res.data["35kV"]) {
|
||||||
|
power35kv.value = res.data["35kV"];
|
||||||
|
}
|
||||||
|
if (res.data["10kV"]) {
|
||||||
|
power10kv.value = res.data["10kV"];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 发电量曲线
|
||||||
|
if(res.data.data){
|
||||||
|
cur_pvArrFlag.value=true
|
||||||
|
cur_pvArr=res.data.data;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.log(error);
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
let pvArr = reactive([]) //光伏
|
||||||
|
let pvArrFlag = ref<boolean>(false)
|
||||||
|
// 获取光伏功率曲线
|
||||||
|
const getpv = () => {
|
||||||
|
pvApi({ mrid: '03DKX-24289' }).then(res => {
|
||||||
|
console.log(res, 'respv')
|
||||||
|
pvArr = res.data
|
||||||
|
if (pvArr.length > 0) {
|
||||||
|
pvArrFlag.value = true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
const HMS = useDateFormat(useNow(), "HH:mm:ss"); //当前时间
|
const HMS = useDateFormat(useNow(), "HH:mm:ss"); //当前时间
|
||||||
const YMD = useDateFormat(useNow(), "YYYY-MM-DD"); //当前日期
|
const YMD = useDateFormat(useNow(), "YYYY-MM-DD"); //当前日期
|
||||||
|
|
|
@ -1,229 +1,232 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="ThreeLine" ref="ThreeLine"></div>
|
<div class="ThreeLine" ref="ThreeLine"></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import {
|
import {
|
||||||
ref,
|
ref,
|
||||||
inject,
|
inject,
|
||||||
onBeforeUnmount,
|
onBeforeUnmount,
|
||||||
getCurrentInstance,
|
getCurrentInstance,
|
||||||
onMounted,
|
onMounted,
|
||||||
watchEffect,
|
watchEffect,
|
||||||
} from "vue";
|
} from "vue";
|
||||||
import transformFontSize from "@/hooks/transFormSize.ts";
|
import transformFontSize from "@/hooks/transFormSize.ts";
|
||||||
import "echarts/lib/component/dataZoom";
|
import "echarts/lib/component/dataZoom";
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
drawOneLine();
|
drawOneLine(props.cur_pvArr);
|
||||||
});
|
});
|
||||||
|
const props = defineProps<{
|
||||||
// 获取echart挂载的DOM节点
|
cur_pvArr: any;
|
||||||
const ThreeLine: any = ref();
|
}>();
|
||||||
|
|
||||||
// 获取当前组件实例
|
// 获取echart挂载的DOM节点
|
||||||
const { proxy }: any = getCurrentInstance();
|
const ThreeLine: any = ref();
|
||||||
|
|
||||||
const drawOneLine = () => {
|
// 获取当前组件实例
|
||||||
let myChart = proxy.$echarts.init(ThreeLine.value);
|
const { proxy }: any = getCurrentInstance();
|
||||||
|
|
||||||
myChart.clear();
|
const drawOneLine = (arr: any) => {
|
||||||
const option = {
|
let myChart = proxy.$echarts.init(ThreeLine.value);
|
||||||
tooltip: {
|
|
||||||
trigger: "axis",
|
myChart.clear();
|
||||||
// axisPointer: { type: 'cross' }
|
const option = {
|
||||||
textStyle: {
|
tooltip: {
|
||||||
color: "#FFFFFF",
|
trigger: "axis",
|
||||||
},
|
// axisPointer: { type: 'cross' }
|
||||||
// padding: transformFontSize(15),
|
textStyle: {
|
||||||
backgroundColor: "rgba(0,163,166,.9)", //设置自定义背景
|
color: "#FFFFFF",
|
||||||
borderColor: "rgba(0,163,166,.9)",
|
},
|
||||||
borderRadius: 5,
|
// padding: transformFontSize(15),
|
||||||
|
backgroundColor: "rgba(0,163,166,.9)", //设置自定义背景
|
||||||
formatter: function (param: any) {
|
borderColor: "rgba(0,163,166,.9)",
|
||||||
let str = `
|
borderRadius: 5,
|
||||||
|
|
||||||
|
formatter: function (param: any) {
|
||||||
|
let str = `
|
||||||
<div style="width:100%:height:100%">
|
<div style="width:100%:height:100%">
|
||||||
<div style="display:flex;justify-content:space-between;"> ${
|
<div style="display:flex;justify-content:space-between;"> ${
|
||||||
param[0].name.split(" ")[0]
|
param[0].name.split(" ")[0]
|
||||||
}</div>
|
}</div>
|
||||||
${getDom(param)}
|
${getDom(param)}
|
||||||
</div>`;
|
</div>`;
|
||||||
function getDom(param: any) {
|
function getDom(param: any) {
|
||||||
let newStr = "";
|
let newStr = "";
|
||||||
param.forEach((item: any) => {
|
param.forEach((item: any) => {
|
||||||
newStr += `<div style="display:flex;"><div>${
|
newStr += `<div style="display:flex;"><div>${
|
||||||
item.seriesName
|
item.seriesName
|
||||||
}负荷:</div><div>${
|
}负荷:</div><div>${
|
||||||
item.value === undefined ? "0" : item.value
|
item.value === undefined ? "0" : item.value
|
||||||
}kW</div></div>`;
|
}kW</div></div>`;
|
||||||
});
|
});
|
||||||
return newStr;
|
return newStr;
|
||||||
}
|
}
|
||||||
return str;
|
return str;
|
||||||
},
|
|
||||||
},
|
},
|
||||||
legend: {
|
},
|
||||||
top: "5%",
|
legend: {
|
||||||
// right: "5%",
|
top: "5%",
|
||||||
// orient: "vertical",
|
// right: "5%",
|
||||||
// data: ["实时发电量", "短期预测发电量", "超短期预测发电量"],
|
// orient: "vertical",
|
||||||
data: ["实时发电量"],
|
// data: ["实时发电量", "短期预测发电量", "超短期预测发电量"],
|
||||||
|
data: ["实时发电量"],
|
||||||
|
|
||||||
itemWidth: transformFontSize(35),
|
itemWidth: transformFontSize(35),
|
||||||
itemHeight: transformFontSize(18),
|
itemHeight: transformFontSize(18),
|
||||||
itemGap:transformFontSize(50),
|
itemGap: transformFontSize(50),
|
||||||
textStyle: {
|
textStyle: {
|
||||||
fontSize: transformFontSize(25),
|
fontSize: transformFontSize(25),
|
||||||
color: "#FFFFFF",
|
color: "#FFFFFF",
|
||||||
},
|
|
||||||
},
|
},
|
||||||
grid: {
|
},
|
||||||
top: "25%",
|
grid: {
|
||||||
left: "8%",
|
top: "25%",
|
||||||
right: "8%",
|
left: "8%",
|
||||||
bottom: "13%",
|
right: "8%",
|
||||||
|
bottom: "13%",
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: "category",
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
alignWithLabel: true,
|
||||||
},
|
},
|
||||||
xAxis: {
|
boundaryGap: false,
|
||||||
type: "category",
|
axisLabel: {
|
||||||
axisTick: {
|
color: "#fff",
|
||||||
show: false,
|
fontSize: transformFontSize(35),
|
||||||
alignWithLabel: true,
|
padding: [0, 0, 0, 30],
|
||||||
},
|
// formatter: function (param: any) {
|
||||||
boundaryGap: false,
|
// return param.split(' ')[1].split(':')[0] + ':' + param.split(' ')[1].split(':')[1]
|
||||||
axisLabel: {
|
|
||||||
color: "#fff",
|
|
||||||
fontSize: transformFontSize(35),
|
|
||||||
padding: [0, 0, 0, 30],
|
|
||||||
// formatter: function (param: any) {
|
|
||||||
// return param.split(' ')[1].split(':')[0] + ':' + param.split(' ')[1].split(':')[1]
|
|
||||||
// },
|
|
||||||
},
|
|
||||||
data: ["03:00", "06:00", "09:00", "12:00", "15:00", "18:00", "24:00"],
|
|
||||||
|
|
||||||
},
|
|
||||||
yAxis: {
|
|
||||||
splitLine: {
|
|
||||||
show: false,
|
|
||||||
},
|
|
||||||
axisLine: {
|
|
||||||
show: true, //y轴轴线
|
|
||||||
},
|
|
||||||
type: "value",
|
|
||||||
name: "kWh",
|
|
||||||
// min: 0,
|
|
||||||
// max: 100,
|
|
||||||
nameTextStyle: {
|
|
||||||
//y轴name的颜色
|
|
||||||
color: "#fff",
|
|
||||||
fontSize: transformFontSize(35),
|
|
||||||
padding: [0, 50, 0, 0],
|
|
||||||
},
|
|
||||||
position: "left",
|
|
||||||
axisLabel: {
|
|
||||||
//刻度标签文字的颜色大小
|
|
||||||
color: "#fff",
|
|
||||||
fontSize: transformFontSize(35),
|
|
||||||
formatter: "{value}",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
series: [
|
|
||||||
{
|
|
||||||
name: "实时发电量",
|
|
||||||
type: "line",
|
|
||||||
barWidth: 2, // 柱子宽度核心代码
|
|
||||||
smooth: true,
|
|
||||||
showSymbol: false,
|
|
||||||
itemStyle: {
|
|
||||||
color: "rgba(18, 231, 227, 1)",
|
|
||||||
},
|
|
||||||
areaStyle: {
|
|
||||||
normal: {
|
|
||||||
color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
||||||
{
|
|
||||||
offset: 0,
|
|
||||||
color: "rgba(18, 231, 227, 0.4)",
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
offset: 1,
|
|
||||||
|
|
||||||
color: "rgba(18, 231, 227, 0.01)",
|
|
||||||
},
|
|
||||||
]),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
data: [20, 42, 41, 24, 40, 30, 10],
|
|
||||||
},
|
|
||||||
// {
|
|
||||||
// name: "短期预测发电量",
|
|
||||||
// type: "line",
|
|
||||||
// barWidth: 2, // 柱子宽度核心代码
|
|
||||||
// smooth: true,
|
|
||||||
// showSymbol: false,
|
|
||||||
// itemStyle: {
|
|
||||||
// color: "rgba(251, 187, 111, 1)",
|
|
||||||
// },
|
|
||||||
// areaStyle: {
|
|
||||||
// normal: {
|
|
||||||
// color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
||||||
// {
|
|
||||||
// offset: 0,
|
|
||||||
|
|
||||||
// color: "rgba(251, 187, 111, 0.4)",
|
|
||||||
// },
|
|
||||||
|
|
||||||
// {
|
|
||||||
// offset: 1,
|
|
||||||
|
|
||||||
// color: "rgba(251, 187, 111, 0.01)",
|
|
||||||
// },
|
|
||||||
// ]),
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// data: [30, 12, 11, 24, 20, 30, 30],
|
|
||||||
// },
|
// },
|
||||||
// {
|
},
|
||||||
// name: "超短期预测发电量",
|
// data: ["03:00", "06:00", "09:00", "12:00", "15:00", "18:00", "24:00"],
|
||||||
// type: "line",
|
data: arr.map((rtime) => rtime?.timeStamp.slice(-5)),
|
||||||
// barWidth: 2, // 柱子宽度核心代码
|
},
|
||||||
// smooth: true,
|
yAxis: {
|
||||||
// showSymbol: false,
|
splitLine: {
|
||||||
// itemStyle: {
|
show: false,
|
||||||
// color: "rgba(107, 255, 130, 1)",
|
},
|
||||||
// },
|
axisLine: {
|
||||||
// areaStyle: {
|
show: true, //y轴轴线
|
||||||
// normal: {
|
},
|
||||||
// color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
type: "value",
|
||||||
// {
|
name: "kWh",
|
||||||
// offset: 0,
|
// min: 0,
|
||||||
|
// max: 100,
|
||||||
// color: "rgba(107, 255, 130, 0.4)",
|
nameTextStyle: {
|
||||||
// },
|
//y轴name的颜色
|
||||||
|
color: "#fff",
|
||||||
// {
|
fontSize: transformFontSize(35),
|
||||||
// offset: 1,
|
padding: [0, 50, 0, 0],
|
||||||
|
},
|
||||||
// color: "rgba(107, 255, 130, 0.01)",
|
position: "left",
|
||||||
// },
|
axisLabel: {
|
||||||
// ]),
|
//刻度标签文字的颜色大小
|
||||||
// },
|
color: "#fff",
|
||||||
// },
|
fontSize: transformFontSize(35),
|
||||||
// data: [40, 18, 19, 23, 29, 33, 31],
|
formatter: "{value}",
|
||||||
// },
|
},
|
||||||
],
|
},
|
||||||
};
|
series: [
|
||||||
myChart.setOption(option);
|
{
|
||||||
|
name: "实时发电量",
|
||||||
// 根据页面大小自动响应图表大小
|
type: "line",
|
||||||
window.addEventListener("resize", function () {
|
barWidth: 2, // 柱子宽度核心代码
|
||||||
myChart.resize();
|
smooth: true,
|
||||||
});
|
showSymbol: false,
|
||||||
|
itemStyle: {
|
||||||
|
color: "rgba(18, 231, 227, 1)",
|
||||||
|
},
|
||||||
|
areaStyle: {
|
||||||
|
normal: {
|
||||||
|
color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||||
|
{
|
||||||
|
offset: 0,
|
||||||
|
color: "rgba(18, 231, 227, 0.4)",
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
offset: 1,
|
||||||
|
|
||||||
|
color: "rgba(18, 231, 227, 0.01)",
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// data: [20, 42, 41, 24, 40, 30, 10],
|
||||||
|
data: arr.map((pvdata) => pvdata.p),
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// name: "短期预测发电量",
|
||||||
|
// type: "line",
|
||||||
|
// barWidth: 2, // 柱子宽度核心代码
|
||||||
|
// smooth: true,
|
||||||
|
// showSymbol: false,
|
||||||
|
// itemStyle: {
|
||||||
|
// color: "rgba(251, 187, 111, 1)",
|
||||||
|
// },
|
||||||
|
// areaStyle: {
|
||||||
|
// normal: {
|
||||||
|
// color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||||
|
// {
|
||||||
|
// offset: 0,
|
||||||
|
|
||||||
|
// color: "rgba(251, 187, 111, 0.4)",
|
||||||
|
// },
|
||||||
|
|
||||||
|
// {
|
||||||
|
// offset: 1,
|
||||||
|
|
||||||
|
// color: "rgba(251, 187, 111, 0.01)",
|
||||||
|
// },
|
||||||
|
// ]),
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// data: [30, 12, 11, 24, 20, 30, 30],
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: "超短期预测发电量",
|
||||||
|
// type: "line",
|
||||||
|
// barWidth: 2, // 柱子宽度核心代码
|
||||||
|
// smooth: true,
|
||||||
|
// showSymbol: false,
|
||||||
|
// itemStyle: {
|
||||||
|
// color: "rgba(107, 255, 130, 1)",
|
||||||
|
// },
|
||||||
|
// areaStyle: {
|
||||||
|
// normal: {
|
||||||
|
// color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||||
|
// {
|
||||||
|
// offset: 0,
|
||||||
|
|
||||||
|
// color: "rgba(107, 255, 130, 0.4)",
|
||||||
|
// },
|
||||||
|
|
||||||
|
// {
|
||||||
|
// offset: 1,
|
||||||
|
|
||||||
|
// color: "rgba(107, 255, 130, 0.01)",
|
||||||
|
// },
|
||||||
|
// ]),
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// data: [40, 18, 19, 23, 29, 33, 31],
|
||||||
|
// },
|
||||||
|
],
|
||||||
};
|
};
|
||||||
</script>
|
myChart.setOption(option);
|
||||||
|
|
||||||
<style scoped>
|
// 根据页面大小自动响应图表大小
|
||||||
.ThreeLine {
|
window.addEventListener("resize", function () {
|
||||||
height: 100%;
|
myChart.resize();
|
||||||
width: 100%;
|
});
|
||||||
}
|
};
|
||||||
</style>
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.ThreeLine {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
@ -1,229 +1,236 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="ThreeLine" ref="ThreeLine"></div>
|
<div class="ThreeLine" ref="ThreeLine"></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import {
|
import {
|
||||||
ref,
|
ref,
|
||||||
inject,
|
inject,
|
||||||
onBeforeUnmount,
|
onBeforeUnmount,
|
||||||
getCurrentInstance,
|
getCurrentInstance,
|
||||||
onMounted,
|
onMounted,
|
||||||
watchEffect,
|
watchEffect,
|
||||||
} from "vue";
|
} from "vue";
|
||||||
import transformFontSize from "@/hooks/transFormSize.ts";
|
import transformFontSize from "@/hooks/transFormSize.ts";
|
||||||
import "echarts/lib/component/dataZoom";
|
import "echarts/lib/component/dataZoom";
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
drawOneLine();
|
drawOneLine();
|
||||||
});
|
});
|
||||||
|
// const props = defineProps<{
|
||||||
// 获取echart挂载的DOM节点
|
// cur_pvArr: any;
|
||||||
const ThreeLine: any = ref();
|
// }>();
|
||||||
|
|
||||||
// 获取当前组件实例
|
// 获取echart挂载的DOM节点
|
||||||
const { proxy }: any = getCurrentInstance();
|
const ThreeLine: any = ref();
|
||||||
|
|
||||||
const drawOneLine = () => {
|
// 获取当前组件实例
|
||||||
let myChart = proxy.$echarts.init(ThreeLine.value);
|
const { proxy }: any = getCurrentInstance();
|
||||||
|
|
||||||
myChart.clear();
|
const drawOneLine = () => {
|
||||||
const option = {
|
let myChart = proxy.$echarts.init(ThreeLine.value);
|
||||||
tooltip: {
|
|
||||||
trigger: "axis",
|
myChart.clear();
|
||||||
// axisPointer: { type: 'cross' }
|
const option = {
|
||||||
textStyle: {
|
tooltip: {
|
||||||
color: "#FFFFFF",
|
trigger: "axis",
|
||||||
},
|
// axisPointer: { type: 'cross' }
|
||||||
// padding: transformFontSize(15),
|
textStyle: {
|
||||||
backgroundColor: "rgba(0,163,166,.9)", //设置自定义背景
|
color: "#FFFFFF",
|
||||||
borderColor: "rgba(0,163,166,.9)",
|
},
|
||||||
borderRadius: 5,
|
// padding: transformFontSize(15),
|
||||||
|
backgroundColor: "rgba(0,163,166,.9)", //设置自定义背景
|
||||||
formatter: function (param: any) {
|
borderColor: "rgba(0,163,166,.9)",
|
||||||
let str = `
|
borderRadius: 5,
|
||||||
|
|
||||||
|
formatter: function (param: any) {
|
||||||
|
let str = `
|
||||||
<div style="width:100%:height:100%">
|
<div style="width:100%:height:100%">
|
||||||
<div style="display:flex;justify-content:space-between;"> ${
|
<div style="display:flex;justify-content:space-between;"> ${
|
||||||
param[0].name.split(" ")[0]
|
param[0].name.split(" ")[0]
|
||||||
}</div>
|
}</div>
|
||||||
${getDom(param)}
|
${getDom(param)}
|
||||||
</div>`;
|
</div>`;
|
||||||
function getDom(param: any) {
|
function getDom(param: any) {
|
||||||
let newStr = "";
|
let newStr = "";
|
||||||
param.forEach((item: any) => {
|
param.forEach((item: any) => {
|
||||||
newStr += `<div style="display:flex;"><div>${
|
newStr += `<div style="display:flex;"><div>${
|
||||||
item.seriesName
|
item.seriesName
|
||||||
}负荷:</div><div>${
|
}负荷:</div><div>${
|
||||||
item.value === undefined ? "0" : item.value
|
item.value === undefined ? "0" : item.value
|
||||||
}kW</div></div>`;
|
}kW</div></div>`;
|
||||||
});
|
});
|
||||||
return newStr;
|
return newStr;
|
||||||
}
|
}
|
||||||
return str;
|
return str;
|
||||||
},
|
|
||||||
},
|
},
|
||||||
legend: {
|
},
|
||||||
top: "0%",
|
legend: {
|
||||||
right: "5%",
|
top: "0%",
|
||||||
orient: "vertical",
|
right: "5%",
|
||||||
// data: ["实时功率", "短期预测功率", "超短期预测功率"],
|
orient: "vertical",
|
||||||
data: ["实时功率"],
|
// data: ["实时功率", "短期预测功率", "超短期预测功率"],
|
||||||
|
data: ["实时功率"],
|
||||||
|
|
||||||
itemWidth: transformFontSize(35),
|
itemWidth: transformFontSize(35),
|
||||||
itemHeight: transformFontSize(18),
|
itemHeight: transformFontSize(18),
|
||||||
itemGap:transformFontSize(20),
|
itemGap: transformFontSize(20),
|
||||||
textStyle: {
|
textStyle: {
|
||||||
fontSize: transformFontSize(25),
|
fontSize: transformFontSize(25),
|
||||||
color: "#FFFFFF",
|
color: "#FFFFFF",
|
||||||
},
|
|
||||||
},
|
},
|
||||||
grid: {
|
},
|
||||||
top: "25%",
|
grid: {
|
||||||
left: "8%",
|
top: "25%",
|
||||||
right: "8%",
|
left: "8%",
|
||||||
bottom: "13%",
|
right: "8%",
|
||||||
|
bottom: "13%",
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: "category",
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
alignWithLabel: true,
|
||||||
},
|
},
|
||||||
xAxis: {
|
boundaryGap: false,
|
||||||
type: "category",
|
axisLabel: {
|
||||||
axisTick: {
|
color: "#fff",
|
||||||
show: false,
|
fontSize: transformFontSize(35),
|
||||||
alignWithLabel: true,
|
padding: [0, 0, 0, 30],
|
||||||
},
|
// formatter: function (param: any) {
|
||||||
boundaryGap: false,
|
// return param.split(' ')[1].split(':')[0] + ':' + param.split(' ')[1].split(':')[1]
|
||||||
axisLabel: {
|
|
||||||
color: "#fff",
|
|
||||||
fontSize: transformFontSize(35),
|
|
||||||
padding: [0, 0, 0, 30],
|
|
||||||
// formatter: function (param: any) {
|
|
||||||
// return param.split(' ')[1].split(':')[0] + ':' + param.split(' ')[1].split(':')[1]
|
|
||||||
// },
|
|
||||||
},
|
|
||||||
data: ["03:00", "06:00", "09:00", "12:00", "15:00", "18:00", "24:00"],
|
|
||||||
|
|
||||||
},
|
|
||||||
yAxis: {
|
|
||||||
splitLine: {
|
|
||||||
show: false,
|
|
||||||
},
|
|
||||||
axisLine: {
|
|
||||||
show: true, //y轴轴线
|
|
||||||
},
|
|
||||||
type: "value",
|
|
||||||
name: "kW",
|
|
||||||
// min: 0,
|
|
||||||
// max: 100,
|
|
||||||
nameTextStyle: {
|
|
||||||
//y轴name的颜色
|
|
||||||
color: "#fff",
|
|
||||||
fontSize: transformFontSize(35),
|
|
||||||
padding: [0, 50, 0, 0],
|
|
||||||
},
|
|
||||||
position: "left",
|
|
||||||
axisLabel: {
|
|
||||||
//刻度标签文字的颜色大小
|
|
||||||
color: "#fff",
|
|
||||||
fontSize: transformFontSize(35),
|
|
||||||
formatter: "{value}",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
series: [
|
|
||||||
{
|
|
||||||
name: "实时功率",
|
|
||||||
type: "line",
|
|
||||||
barWidth: 2, // 柱子宽度核心代码
|
|
||||||
smooth: true,
|
|
||||||
showSymbol: false,
|
|
||||||
itemStyle: {
|
|
||||||
color: "rgba(18, 231, 227, 1)",
|
|
||||||
},
|
|
||||||
areaStyle: {
|
|
||||||
normal: {
|
|
||||||
color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
||||||
{
|
|
||||||
offset: 0,
|
|
||||||
color: "rgba(18, 231, 227, 0.4)",
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
offset: 1,
|
|
||||||
|
|
||||||
color: "rgba(18, 231, 227, 0.01)",
|
|
||||||
},
|
|
||||||
]),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
data: [20, 42, 41, 24, 40, 30, 10],
|
|
||||||
},
|
|
||||||
// {
|
|
||||||
// name: "短期预测功率",
|
|
||||||
// type: "line",
|
|
||||||
// barWidth: 2, // 柱子宽度核心代码
|
|
||||||
// smooth: true,
|
|
||||||
// showSymbol: false,
|
|
||||||
// itemStyle: {
|
|
||||||
// color: "rgba(251, 187, 111, 1)",
|
|
||||||
// },
|
|
||||||
// areaStyle: {
|
|
||||||
// normal: {
|
|
||||||
// color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
||||||
// {
|
|
||||||
// offset: 0,
|
|
||||||
|
|
||||||
// color: "rgba(251, 187, 111, 0.4)",
|
|
||||||
// },
|
|
||||||
|
|
||||||
// {
|
|
||||||
// offset: 1,
|
|
||||||
|
|
||||||
// color: "rgba(251, 187, 111, 0.01)",
|
|
||||||
// },
|
|
||||||
// ]),
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// data: [30, 12, 11, 24, 20, 30, 30],
|
|
||||||
// },
|
// },
|
||||||
// {
|
},
|
||||||
// name: "超短期预测功率",
|
data: ["03:00", "06:00", "09:00", "12:00", "15:00", "18:00", "24:00"],
|
||||||
// type: "line",
|
// data: (arr.map((rtime) => rtime?.timeStamp.slice(-8))),
|
||||||
// barWidth: 2, // 柱子宽度核心代码
|
|
||||||
// smooth: true,
|
|
||||||
// showSymbol: false,
|
// data: ["03:00", "06:00", "09:00", "12:00", "15:00", "18:00", "24:00"],
|
||||||
// itemStyle: {
|
},
|
||||||
// color: "rgba(107, 255, 130, 1)",
|
yAxis: {
|
||||||
// },
|
splitLine: {
|
||||||
// areaStyle: {
|
show: false,
|
||||||
// normal: {
|
},
|
||||||
// color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
axisLine: {
|
||||||
// {
|
show: true, //y轴轴线
|
||||||
// offset: 0,
|
},
|
||||||
|
type: "value",
|
||||||
// color: "rgba(107, 255, 130, 0.4)",
|
name: "kW",
|
||||||
// },
|
// min: 0,
|
||||||
|
// max: 100,
|
||||||
// {
|
nameTextStyle: {
|
||||||
// offset: 1,
|
//y轴name的颜色
|
||||||
|
color: "#fff",
|
||||||
// color: "rgba(107, 255, 130, 0.01)",
|
fontSize: transformFontSize(35),
|
||||||
// },
|
padding: [0, 50, 0, 0],
|
||||||
// ]),
|
},
|
||||||
// },
|
position: "left",
|
||||||
// },
|
axisLabel: {
|
||||||
// data: [40, 18, 19, 23, 29, 33, 31],
|
//刻度标签文字的颜色大小
|
||||||
// },
|
color: "#fff",
|
||||||
],
|
fontSize: transformFontSize(35),
|
||||||
};
|
formatter: "{value}",
|
||||||
myChart.setOption(option);
|
},
|
||||||
|
},
|
||||||
// 根据页面大小自动响应图表大小
|
series: [
|
||||||
window.addEventListener("resize", function () {
|
{
|
||||||
myChart.resize();
|
name: "实时功率",
|
||||||
});
|
type: "line",
|
||||||
|
barWidth: 2, // 柱子宽度核心代码
|
||||||
|
smooth: true,
|
||||||
|
showSymbol: false,
|
||||||
|
itemStyle: {
|
||||||
|
color: "rgba(18, 231, 227, 1)",
|
||||||
|
},
|
||||||
|
areaStyle: {
|
||||||
|
normal: {
|
||||||
|
color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||||
|
{
|
||||||
|
offset: 0,
|
||||||
|
color: "rgba(18, 231, 227, 0.4)",
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
offset: 1,
|
||||||
|
|
||||||
|
color: "rgba(18, 231, 227, 0.01)",
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data: [20, 42, 41, 24, 40, 30, 10],
|
||||||
|
// data: arr.map((pvdata) => pvdata.p),
|
||||||
|
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// name: "短期预测功率",
|
||||||
|
// type: "line",
|
||||||
|
// barWidth: 2, // 柱子宽度核心代码
|
||||||
|
// smooth: true,
|
||||||
|
// showSymbol: false,
|
||||||
|
// itemStyle: {
|
||||||
|
// color: "rgba(251, 187, 111, 1)",
|
||||||
|
// },
|
||||||
|
// areaStyle: {
|
||||||
|
// normal: {
|
||||||
|
// color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||||
|
// {
|
||||||
|
// offset: 0,
|
||||||
|
|
||||||
|
// color: "rgba(251, 187, 111, 0.4)",
|
||||||
|
// },
|
||||||
|
|
||||||
|
// {
|
||||||
|
// offset: 1,
|
||||||
|
|
||||||
|
// color: "rgba(251, 187, 111, 0.01)",
|
||||||
|
// },
|
||||||
|
// ]),
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// data: [30, 12, 11, 24, 20, 30, 30],
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: "超短期预测功率",
|
||||||
|
// type: "line",
|
||||||
|
// barWidth: 2, // 柱子宽度核心代码
|
||||||
|
// smooth: true,
|
||||||
|
// showSymbol: false,
|
||||||
|
// itemStyle: {
|
||||||
|
// color: "rgba(107, 255, 130, 1)",
|
||||||
|
// },
|
||||||
|
// areaStyle: {
|
||||||
|
// normal: {
|
||||||
|
// color: new proxy.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||||||
|
// {
|
||||||
|
// offset: 0,
|
||||||
|
|
||||||
|
// color: "rgba(107, 255, 130, 0.4)",
|
||||||
|
// },
|
||||||
|
|
||||||
|
// {
|
||||||
|
// offset: 1,
|
||||||
|
|
||||||
|
// color: "rgba(107, 255, 130, 0.01)",
|
||||||
|
// },
|
||||||
|
// ]),
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// data: [40, 18, 19, 23, 29, 33, 31],
|
||||||
|
// },
|
||||||
|
],
|
||||||
};
|
};
|
||||||
</script>
|
myChart.setOption(option);
|
||||||
|
|
||||||
<style scoped>
|
// 根据页面大小自动响应图表大小
|
||||||
.ThreeLine {
|
window.addEventListener("resize", function () {
|
||||||
height: 100%;
|
myChart.resize();
|
||||||
width: 100%;
|
});
|
||||||
}
|
};
|
||||||
</style>
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.ThreeLine {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue