场景模型测试工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scmy/psdc-ui/src/views/emonitor/db/index.vue

349 lines
7.4 KiB

2 years ago
<template>
<div class="app-container home">
2 years ago
<div class="top">
<div class="card">
<div>pic</div>
<div>
<p>当前功率</p>
2 years ago
<h2>{{data.num}}kW</h2>
2 years ago
</div>
</div>
<div class="card">
<div>pic</div>
<div>
<p>日用电量</p>
<h2>11kWh</h2>
</div>
</div>
<div class="card">
<div>pic</div>
<div>
<p>月用电量</p>
<h2>141kWh</h2>
</div>
</div>
<div class="card">
<div>pic</div>
<div>
<p>累计用电量</p>
<h2>1641kWh</h2>
</div>
</div>
</div>
<div class="mid">
<div class="mid1">
<div class="mid1-1">
当前功率
</div>
2 years ago
<div id="myEcharts1" style="width: 100%; height: 88.6%"></div>
2 years ago
</div>
<div class="mid2">
<div class="mid2-1">
当前功率总览
</div>
2 years ago
<div id="myEcharts2" style="width: 100%; height: 88.6%"></div>
2 years ago
</div>
</div>
<div class="bottom">
<div class="bottom1">
<div class="bottom1-1">
今日用电量总览
</div>
2 years ago
<div id="myEcharts3" style="width: 100%; height: 88.6%"></div>
2 years ago
</div>
</div>
2 years ago
</div>
</template>
2 years ago
<script name="Index">
2 years ago
import {getData , getZdb} from '../../../api/emonitor/api'
import { onMounted ,onUnmounted ,reactive } from "vue";
2 years ago
import * as echarts from 'echarts';
export default {
name: "db",
setup() {
2 years ago
let data = reactive({
num:666,
fdlData:'',
fdlXz:'',
})
// function getData() {
// glData(13).then((res)=>{
// console.log(res.data)
// })
// }
// return{
// getData
// },
2 years ago
2 years ago
onMounted(() => {//需要获取到element,所以是onMounted的Hook
2 years ago
getData(13).then((res)=>{
console.log(res)
})
getZdb(13).then((res)=>{
console.log(res)
let arr = []
let brr = []
for (let i in res.data){
arr.push(res.data[i].hour)
brr.push(res.data[i].useElectric)
}
data.fdlData=brr
data.fdlXz=arr
let myChart3 = echarts.getInstanceByDom(document.getElementById("myEcharts3"));
if (myChart3){
myChart3.dispose()
}
myChart3 = echarts.init(document.getElementById("myEcharts3"));
myChart3.setOption({
title: {},
tooltip: {},
textStyle:{
color:'#BEC3DA'
},
xAxis: {
type:'category',
data:data.fdlXz,
axisLine:{
lineStyle:{
color:'#BEC3DA',
type:'dashed'
}
}
},
yAxis: {
type: 'value',
name: "kWh",
splitLine:{
show:true,
lineStyle:{
type:'dashed',
color:'#BEC3DA'
}
},
axisLine: {
show: true,
lineStyle:{
type:'dashed',
color:'#BEC3DA'
}
},
},
series: [
{
name: "今日用电量",
type: "bar",
data: [data.fdlData],
itemStyle:{
color:'#2F8EE0'
},
},
],
});
window.onresize = function () {//自适应大小
myChart3.resize();
};
})
let myChart1 = echarts.getInstanceByDom(document.getElementById("myEcharts1"));
if (myChart1){
myChart1.dispose()
}
myChart1 = echarts.init(document.getElementById("myEcharts1"));
myChart1.setOption({
2 years ago
series: [
{
type: 'gauge',
axisLine: {
lineStyle: {
width: 10,
color: [
[0.3, '#67e0e3'],
[0.7, '#37a2da'],
[1, '#fd666d']
]
}
},
pointer: {
itemStyle: {
color: 'inherit'
}
},
// axisTick: {
// distance: -30,
// length: 8,
// lineStyle: {
// color: '#fff',
// width: 2
// }
// },
// splitLine: {
// distance: -30,
// length: 30,
// lineStyle: {
// color: '#fff',
// width: 4
// }
// },
axisLabel: {
color: 'inherit',
distance: 10,
fontSize: 10
},
detail: {
valueAnimation: true,
formatter: '{value} kW',
color: 'inherit'
},
data: [
{
value: 70
}
]
}
]
2 years ago
});
2 years ago
window.onresize = function () {//自适应大小
2 years ago
myChart1.resize();
2 years ago
};
2 years ago
2 years ago
let myChart2 = echarts.getInstanceByDom(document.getElementById("myEcharts2"));
if (myChart2){
myChart2.dispose()
}
myChart2 = echarts.init(document.getElementById("myEcharts2"));
2 years ago
myChart2.setOption({
2 years ago
title: {},
tooltip: {},
textStyle:{
color:'#BEC3DA'
},
xAxis: {
data: ["12-3", "12-4", "12-5", "12-6", "12-7", "12-8"],
axisLine:{
lineStyle:{
color:'#BEC3DA',
type:'dashed'
}
}
},
yAxis: {
type: 'value',
2 years ago
name: "kW",
2 years ago
splitLine:{
show:true,
lineStyle:{
type:'dashed',
color:'#BEC3DA'
}
},
axisLine: {
show: true,
lineStyle:{
type:'dashed',
color:'#BEC3DA'
}
},
},
series: [
{
2 years ago
name: "当前功率",
type: "line",
2 years ago
data: [5, 20, 36, 10, 10, 20],
itemStyle:{
color:'#2F8EE0'
},
},
],
});
window.onresize = function () {//自适应大小
2 years ago
myChart2.resize();
2 years ago
};
2 years ago
2 years ago
})
return {
data
}
2 years ago
},
2 years ago
2 years ago
components: {},
mounted() {},
};
2 years ago
</script>
<style scoped lang="scss">
2 years ago
p{
margin-bottom: 10px;
}
.top{
width: 100%;
height: 110px;
display: flex;
justify-content: space-between;
}
.card{
width: 24%;
height: 100%;
background-color: #2F3D8A;
display: flex;
justify-content: space-around;
align-items: center;
}
.mid{
width: 100%;
height: 350px;
2 years ago
margin-top: 20px;
margin-bottom: 20px;
2 years ago
display: flex;
justify-content: space-between;
}
.mid1{
width: 24%;
height: 100%;
background-color: #2F3D8A;
}
.mid1-1{
width: 100%;
height: 40px;
background-color: #374590;
padding-top: 10px;
padding-left: 10px;
}
.mid2{
width: 74.67%;
height: 100%;
background-color: #2F3D8A;
}
.mid2-1{
width: 100%;
height: 40px;
background-color: #374590;
padding-top: 10px;
padding-left: 10px;
}
.bottom{
width: 100%;
height: 350px;
}
.bottom1{
width: 100%;
height: 100%;
background-color: #2F3D8A;
}
.bottom1-1{
width: 100%;
height: 40px;
background-color: #374590;
padding-top: 10px;
padding-left: 10px;
}
2 years ago
</style>