场景模型测试工具
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.

165 lines
3.2 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>
<h2>1641kWh</h2>
</div>
</div>
<div class="card">
<div>pic</div>
<div>
<p>当前功率</p>
<h2>11kW</h2>
</div>
</div>
<div class="card">
<div>pic</div>
<div>
<div style="display: flex; margin-bottom: 5px">
<p>进水温度:</p>
<h2>25</h2>
</div>
<div style="display: flex">
<p>出水温度:</p>
<h2>85</h2>
</div>
</div>
</div>
<div class="card">
<div>pic</div>
<div>
<p>运行状态</p>
<h2 style="color: #1ab394">开启</h2>
</div>
</div>
</div>
<div class="bottom">
<div class="bottom1">
<div class="bottom1-1">
日用电量
</div>
2 years ago
<div id="myEcharts" style="width: 100%; height: 86.7%">
2 years ago
pic
</div>
</div>
<div class="bottom1">
<div class="bottom1-1">
月用电量
</div>
<div>
pic
</div>
</div>
<div class="bottom1">
<div class="bottom1-1">
当前功率
</div>
<div>
pic
</div>
</div>
<div class="bottom1">
<div class="bottom1-1">
当前温度
</div>
<div>
pic
</div>
</div>
</div>
2 years ago
</div>
</template>
2 years ago
<script name="Index">
import { onMounted } from "vue";
import * as echarts from 'echarts';
export default {
name: "drgl",
setup() {
onMounted(() => {//需要获取到element,所以是onMounted的Hook
let myChart = echarts.init(document.getElementById("myEcharts"));
// 绘制图表
myChart.setOption({
title: {},
tooltip: {},
xAxis: {
data: ["12-3", "12-4", "12-5", "12-6", "12-7", "12-8"],
},
yAxis: {
nameTextStyle: {
color: 'white'
},
show: true,
type: 'value',
axisLine: {
show: true,
}
},
series: [
{
name: "用户量",
type: "bar",
data: [5, 20, 36, 10, 10, 20],
},
],
});
window.onresize = function () {//自适应大小
myChart.resize();
};
});
},
components: {},
mounted() {},
};
2 years ago
</script>
<style scoped lang="scss">
2 years ago
.top{
width: 100%;
height: 110px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
2 years ago
margin-bottom: 20px;
2 years ago
}
.card{
width: 24%;
height: 110px;
background-color: #2F3D8A;
display: flex;
justify-content: space-around;
align-items: center;
}
2 years ago
2 years ago
.bottom{
width: 100%;
2 years ago
height: 640px;
2 years ago
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.bottom1{
width: 49.35%;
height: 300px;
background-color: #2F3D8A;
2 years ago
margin-bottom: 20px;
2 years ago
}
p{
margin-bottom: 10px;
}
.bottom1-1{
width: 100%;
2 years ago
height: 13.3%;
2 years ago
background-color: #374590;
padding-top: 10px;
padding-left: 10px;
}
2 years ago
</style>