123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- <template>
- <div class="_consume">
- <HeadlineTag value="24小时能耗-水/T"></HeadlineTag>
- <div class="_consume_mains" v-if="resultData && Object.keys(resultData).length != 0">
- <div ref="chartRef" style="width: 100%; height: 100%;"></div>
- </div>
- <Empty :bottom="true" v-else></Empty>
- </div>
- </template>
- <script setup>
- import { ref, onMounted, onUnmounted, nextTick } from 'vue';
- import * as echarts from 'echarts';
- import HeadlineTag from '@/components/HeadlineTag';
- import Empty from '@/components/Empty'
- const props = defineProps({
- resultData: {
- type: Object,
- default: {}
- }
- })
- const chartRef = ref(null);
- let chart = null;
- const generateRandomData = (length, max) => {
- const randomData = [];
- for (let i = 0; i < length; i++) {
- randomData.push(Math.floor(Math.random() * max));
- }
- return randomData;
- };
- const handleResize = () => {
- if (chart) {
- chart.resize();
- }
- };
- onMounted(() => {
- initChart();
- });
- const initChart = (dates, EPE) => {
- if (chartRef.value) {
- chart = echarts.init(chartRef.value);
- // 生成 24 小时的时间数据
- // const hours = Array.from({ length: 24 }, (_, i) => `${i}时`);
- const hours = []
- const option = {
- xAxis: {
- type: 'category',
- // 使用 24 小时数据
- data: hours,
- axisLabel: {
- color: '#fff'
- },
- data: dates,
- },
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'cross',
- crossStyle: {
- color: '#999'
- }
- },
- textStyle: {
- color: '#fafafa',
- },
- borderColor: 'transparent',
- backgroundColor: 'rgba(0, 0, 0, 0.5)',
- extraCssText: 'backdrop-filter: blur(6px);',
- formatter: function (params) {
- let result = params[0].axisValue + '<br/>';
- params.forEach(item => {
- result += item.marker + item.seriesName + ':' + item.data + ' m3<br/>';
- });
- return result;
- }
- },
- grid: {
- top: '10%',
- bottom: '10%',
- right: '0%',
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- show: true,
- color: '#fff'
- },
- splitLine: {
- show: false,
- lineStyle: {
- color: '#44585e'
- }
- },
- axisTick: {
- show: false
- },
- },
- series: [
- {
- name: '24小时水能耗',
- type: 'line',
- // 生成 24 个随机数据
- // data: generateRandomData(7, 50),
- data: EPE,
- lineStyle: {
- color: 'rgb(49, 143, 247)',
- },
- showSymbol: false,
- smooth: true,
- areaStyle: {
- color: new echarts.graphic.LinearGradient(
- 0,
- 0,
- 0,
- 1,
- [{
- offset: 0,
- color: 'rgba(49, 143, 247, .6)',
- },
- {
- offset: 0.8,
- color: 'rgba(49, 143, 247, .2)',
- },
- ],
- false
- ),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10,
- }
- }
- ]
- };
- chart.setOption(option);
- }
- }
- const getChartData = (electricityCount) => {
- const dates = [];
- const EPE = [];
- const EPE_forecast = [];
- Object.entries(electricityCount || {}).forEach(([date, value]) => {
- dates.push(date);
- EPE.push(value.EPE);
- EPE_forecast.push(value.EPE_forecast);
- });
- return { dates, EPE, EPE_forecast };
- };
- watch(() => props.resultData, (newVal) => {
- const { dates, EPE, EPE_forecast } = getChartData(newVal);
- if (newVal && chart == null) {
- nextTick(() => {
- initChart(dates, EPE);
- });
- }
- if (chart) {
- chart.setOption({
- xAxis: {
- data: dates,
- },
- series: [{
- type: 'line',
- data: EPE,
- }],
- })
- }
- }, { deep: true, immediate: true } // 开启深度监听
- )
- onUnmounted(() => {
- window.removeEventListener('resize', handleResize);
- if (chart) {
- chart.dispose();
- }
- });
- </script>
- <style lang="scss">
- ._divider {
- height: 1px;
- border: 1px dashed #168cdb;
- flex: 1;
- margin: 0 10px;
- }
- ._consume {
- display: flex;
- flex-direction: column;
- &_mains {
- margin: 10px 30px;
- flex: 1;
- display: flex;
- &_item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 10px;
- &_name {
- width: 30px;
- height: 30px;
- background: url("@/assets/images/content_circle_num.png");
- background-size: 100% 100%;
- background-position: center;
- background-repeat: no-repeat;
- // animation: scanning 4s linear infinite;
- border: 1px solid red;
- }
- &_flag {
- display: flex;
- align-items: center;
- gap: 3px;
- &_item {
- width: 30px;
- height: 30px;
- border: 3px dashed #168cdb;
- box-sizing: border-box;
- background: #0e6ead;
- color: #fff;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 14px;
- }
- }
- }
- &_item:hover {
- cursor: pointer;
- background-image: linear-gradient(to right, #168cdb, transparent);
- }
- }
- }
- </style>
|