Files
energy_storage/web/src/components/Home/Energy.vue

230 lines
4.9 KiB
Vue
Raw Normal View History

2025-09-01 16:58:54 +08:00
<template>
<div class="energy">
<div class="text_Cur">
<div v-for="item in curList" :key="item.key">
<div>{{ item.name }}</div>
<div>
<span class="mark">{{ item.value ? item.value : 0 }}</span>
<span class="d">{{ item.d }}</span>
</div>
</div>
</div>
<div id="energy-chart"></div>
</div>
</template>
<script>
2025-09-04 16:04:37 +08:00
import {processData} from '@/utils/dealWithData'
2025-09-01 16:58:54 +08:00
export default {
name: '',
props: {
2025-09-04 11:12:20 +08:00
total: {
type: Object,
default: () => {}
2025-09-03 13:53:00 +08:00
},
2025-09-01 16:58:54 +08:00
deviceInfo: {
type: Array,
default: () => []
}
},
data() {
return {
2025-09-04 11:12:20 +08:00
uid:'1',
2025-09-01 16:58:54 +08:00
curList: [
{
name: '日充电电量',
2025-09-04 11:12:20 +08:00
key: 'storage_elect_in',
2025-09-01 16:58:54 +08:00
lineColor: '#22E4FF',
value: 0,
d: 'kW·h'
},
{
name: '日放电电量',
2025-09-04 11:12:20 +08:00
key: 'storage_elect_out',
2025-09-01 16:58:54 +08:00
lineColor: '#0E68E4',
value: 0,
d: 'kW·h'
}
],
2025-09-04 11:12:20 +08:00
energyChart: null,
energyChartData: {
2025-09-01 16:58:54 +08:00
ydata: [],
xdata: []
}
}
},
watch: {
2025-09-04 11:12:20 +08:00
total: {
handler(newVal,oldVal) {
if (newVal!==oldVal) {
let that = this
that.curList.forEach((item) => {
item.value = that.total[item.key]
2025-09-03 13:53:00 +08:00
})
}
},
2025-09-04 11:12:20 +08:00
2025-09-03 13:53:00 +08:00
},
2025-09-01 16:58:54 +08:00
deviceInfo: {
2025-09-04 11:12:20 +08:00
handler(newVal,oldVal) {
if (JSON.stringify(newVal) !== JSON.stringify(oldVal)) {
this.$nextTick(() => {
this.drawLineChart()
})
}
},
deep: true // 确保深度比较
2025-09-01 16:58:54 +08:00
}
},
mounted() {},
2025-09-04 11:12:20 +08:00
beforeUnmount() {
2025-09-01 16:58:54 +08:00
window.removeEventListener('resize', this.handleResize)
2025-09-04 11:12:20 +08:00
if(this.energyChart){
this.energyChart.dispose()
this.energyChart = null
}
2025-09-01 16:58:54 +08:00
},
methods: {
handleResize() {
2025-09-04 11:12:20 +08:00
if(this.energyChart){
this.energyChart.resize()
}
2025-09-01 16:58:54 +08:00
},
2025-09-04 16:04:37 +08:00
2025-09-01 16:58:54 +08:00
getChargeData() {
const arr = this.curList
const keyList = this.curList.map((item) => item.key)
2025-09-04 16:04:37 +08:00
const result = processData(this.deviceInfo, keyList)
2025-09-01 16:58:54 +08:00
2025-09-04 11:12:20 +08:00
this.energyChartData.xdata = result.dates
2025-09-01 16:58:54 +08:00
arr.forEach((item, index) => {
2025-09-04 11:12:20 +08:00
this.energyChartData.ydata[index] = {
2025-09-01 16:58:54 +08:00
name: item.name,
smooth: true,
type: 'bar',
barWidth: 5,
itemStyle: {
borderRadius: [5, 5, 0, 0],
color: item.lineColor
},
emphasis: {
focus: 'series'
},
global: false,
showSymbol: false,
data: result.values[index]
}
})
},
drawLineChart(activeKey) {
this.getChargeData(activeKey)
2025-09-04 11:12:20 +08:00
if(this.energyChart){
this.energyChart.dispose()
}
2025-09-01 16:58:54 +08:00
const chartDom = document.getElementById('energy-chart')
2025-09-04 11:12:20 +08:00
if (!chartDom) return;
let energyChart = this.$echarts.init(chartDom)
this.energyChart = energyChart
2025-09-01 16:58:54 +08:00
const option = {
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
}
},
legend: {
top: 20,
textStyle: {
color: '#fff'
}
},
grid: {
left: '3%',
right: '4%',
2025-09-04 11:12:20 +08:00
bottom: '3%',
2025-09-01 16:58:54 +08:00
containLabel: true
},
xAxis: {
type: 'category',
2025-09-04 11:12:20 +08:00
data: this.energyChartData.xdata,
2025-09-01 16:58:54 +08:00
axisLine: {
lineStyle: { type: 'dashed', color: '#435463' }
},
axisLabel: {
color: '#fff'
}
},
yAxis: {
type: 'value',
splitLine: {
lineStyle: { type: 'dashed', color: '#435463' }
},
axisLabel: {
2025-09-04 11:12:20 +08:00
interval: 4,
2025-09-11 19:01:01 +08:00
color: '#fff',
fontSize:12
2025-09-01 16:58:54 +08:00
}
},
2025-09-04 11:12:20 +08:00
series: this.energyChartData.ydata
2025-09-01 16:58:54 +08:00
}
2025-09-04 11:12:20 +08:00
option && energyChart.setOption(option)
this.setupResizeListener()
},
setupResizeListener(){
window.removeEventListener('resize', this.handleResize);
2025-09-01 16:58:54 +08:00
window.addEventListener('resize', this.handleResize)
}
}
}
</script>
<style lang="scss" scoped>
.energy {
height: calc(100% - 45px);
#energy-chart {
height: calc(100% - 45px);
}
}
.text_Cur {
border-bottom: 1px solid transparent;
border-top: 1px solid transparent;
border-image: linear-gradient(to right, transparent, #1d8a7b, transparent) 1;
padding: 0px 15px;
font-size: 14px;
margin: 3px 0px;
height: 45px;
display: flex;
justify-content: space-between;
align-items: center;
& > div:last-child {
display: flex;
flex-direction: column;
justify-content: center;
align-items: end;
}
.mark {
font-size: 16px;
margin-right: 2px;
}
background: linear-gradient(
90deg,
rgba(0, 186, 173, 0.15) 0%,
rgba(61, 254, 250, 0.15) 49.2%,
rgba(61, 254, 250, 0) 100%
);
.d {
margin-left: 1px;
font-size: 12px;
}
}
</style>