2025-09-20 20:03:46 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="tongbifenxi-line-container">
|
2025-09-22 16:15:50 +08:00
|
|
|
|
<div class="title">
|
|
|
|
|
|
<TitleComponent title="发电量同比分析" :font-level="2" />
|
|
|
|
|
|
<el-select placeholder="请选择线路" style="width: 150px;">
|
|
|
|
|
|
<el-option label="A线路" value="all"></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div ref="chartDomRef" class="chart-container"></div>
|
2025-09-20 20:03:46 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
import { onMounted, onBeforeUnmount, ref } from 'vue';
|
|
|
|
|
|
import * as echarts from 'echarts';
|
2025-09-22 16:15:50 +08:00
|
|
|
|
import TitleComponent from '@/components/TitleComponent/index.vue';
|
2025-09-20 20:03:46 +08:00
|
|
|
|
|
2025-09-22 16:15:50 +08:00
|
|
|
|
const chartDomRef = ref<HTMLElement | null>(null);
|
2025-09-20 20:03:46 +08:00
|
|
|
|
const chartInstance = ref<echarts.ECharts | null>(null);
|
|
|
|
|
|
|
|
|
|
|
|
const initChart = () => {
|
2025-09-22 16:15:50 +08:00
|
|
|
|
if (!chartDomRef.value) return;
|
2025-09-20 20:03:46 +08:00
|
|
|
|
|
2025-09-22 16:15:50 +08:00
|
|
|
|
chartInstance.value = echarts.init(chartDomRef.value);
|
2025-09-20 20:03:46 +08:00
|
|
|
|
|
|
|
|
|
|
// 写死的数据
|
|
|
|
|
|
const dates = ['1号', '2号', '3号', '4号', '5号', '6号', '7号'];
|
2025-09-22 16:15:50 +08:00
|
|
|
|
const growthRates = [1.50, 1.20, 0.50, 0.80, 0.90, 0.30, -2.00];
|
2025-09-20 20:03:46 +08:00
|
|
|
|
|
|
|
|
|
|
const option: echarts.EChartsOption = {
|
|
|
|
|
|
tooltip: {
|
2025-09-22 16:15:50 +08:00
|
|
|
|
trigger: 'item',
|
|
|
|
|
|
backgroundColor: '#67c23a',
|
|
|
|
|
|
borderWidth: 0,
|
2025-09-20 20:03:46 +08:00
|
|
|
|
textStyle: {
|
2025-09-22 16:15:50 +08:00
|
|
|
|
color: '#fff',
|
|
|
|
|
|
fontSize: 14
|
2025-09-20 20:03:46 +08:00
|
|
|
|
},
|
|
|
|
|
|
formatter: (params: any) => {
|
2025-09-22 16:15:50 +08:00
|
|
|
|
return `${params.name}:\n环比增长率:${params.value}%`;
|
2025-09-20 20:03:46 +08:00
|
|
|
|
},
|
2025-09-22 16:15:50 +08:00
|
|
|
|
padding: [10, 15]
|
2025-09-20 20:03:46 +08:00
|
|
|
|
},
|
|
|
|
|
|
grid: {
|
|
|
|
|
|
left: '3%',
|
|
|
|
|
|
right: '4%',
|
|
|
|
|
|
bottom: '3%',
|
|
|
|
|
|
containLabel: true
|
|
|
|
|
|
},
|
|
|
|
|
|
xAxis: [
|
|
|
|
|
|
{
|
|
|
|
|
|
type: 'category',
|
|
|
|
|
|
boundaryGap: false,
|
|
|
|
|
|
data: dates,
|
|
|
|
|
|
axisTick: {
|
2025-09-22 16:15:50 +08:00
|
|
|
|
show: false
|
2025-09-20 20:03:46 +08:00
|
|
|
|
},
|
|
|
|
|
|
axisLine: {
|
|
|
|
|
|
lineStyle: {
|
|
|
|
|
|
color: '#d9d9d9'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
axisLabel: {
|
|
|
|
|
|
color: '#666'
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
],
|
|
|
|
|
|
yAxis: [
|
|
|
|
|
|
{
|
|
|
|
|
|
type: 'value',
|
|
|
|
|
|
min: -2,
|
|
|
|
|
|
max: 2,
|
|
|
|
|
|
axisLabel: {
|
|
|
|
|
|
color: '#666',
|
|
|
|
|
|
formatter: '{value}%'
|
|
|
|
|
|
},
|
|
|
|
|
|
axisLine: {
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
lineStyle: {
|
|
|
|
|
|
color: '#d9d9d9'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
splitLine: {
|
|
|
|
|
|
lineStyle: {
|
|
|
|
|
|
color: '#f0f0f0',
|
|
|
|
|
|
type: 'dashed'
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
],
|
|
|
|
|
|
series: [
|
|
|
|
|
|
{
|
|
|
|
|
|
name: '环比增长率',
|
|
|
|
|
|
type: 'line',
|
|
|
|
|
|
areaStyle: {
|
|
|
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
|
{
|
|
|
|
|
|
offset: 0,
|
|
|
|
|
|
color: 'rgba(103, 194, 58, 0.3)'
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
offset: 1,
|
|
|
|
|
|
color: 'rgba(103, 194, 58, 0.05)'
|
|
|
|
|
|
}
|
|
|
|
|
|
])
|
|
|
|
|
|
},
|
|
|
|
|
|
lineStyle: {
|
|
|
|
|
|
color: '#67c23a',
|
|
|
|
|
|
width: 3
|
|
|
|
|
|
},
|
|
|
|
|
|
symbol: 'circle',
|
|
|
|
|
|
symbolSize: 8,
|
|
|
|
|
|
itemStyle: {
|
|
|
|
|
|
color: '#67c23a',
|
|
|
|
|
|
borderColor: '#fff',
|
|
|
|
|
|
borderWidth: 2
|
|
|
|
|
|
},
|
2025-09-22 16:15:50 +08:00
|
|
|
|
emphasis: {
|
|
|
|
|
|
focus: 'series',
|
|
|
|
|
|
itemStyle: {
|
|
|
|
|
|
color: '#67c23a',
|
|
|
|
|
|
borderColor: '#fff',
|
|
|
|
|
|
borderWidth: 3,
|
|
|
|
|
|
shadowBlur: 10,
|
|
|
|
|
|
shadowColor: 'rgba(103, 194, 58, 0.5)'
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
},
|
2025-09-20 20:03:46 +08:00
|
|
|
|
data: growthRates,
|
|
|
|
|
|
smooth: true
|
|
|
|
|
|
}
|
|
|
|
|
|
]
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
chartInstance.value.setOption(option);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleResize = () => {
|
|
|
|
|
|
chartInstance.value?.resize();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
initChart();
|
|
|
|
|
|
window.addEventListener('resize', handleResize);
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
|
|
window.removeEventListener('resize', handleResize);
|
|
|
|
|
|
chartInstance.value?.dispose();
|
|
|
|
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
.tongbifenxi-line-container {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
min-height: 300px;
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
background: #fff;
|
2025-09-22 16:15:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
width: 100%;
|
2025-09-20 20:03:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chart-container {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
min-height: 280px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
|
.tongbifenxi-line-container {
|
|
|
|
|
|
padding: 5px;
|
|
|
|
|
|
min-height: 250px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chart-container {
|
|
|
|
|
|
min-height: 230px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|