28 lines
597 B
Vue
28 lines
597 B
Vue
<template>
|
|
<Container name="能源监控" size="large" style="">
|
|
<div class="chart" style="height: 370px; margin-top: 8px;">
|
|
<EnergeMonitoringChart/>
|
|
</div>
|
|
</Container>
|
|
</template>
|
|
<script>
|
|
import Container from '../components/Container.vue';
|
|
import EnergeMonitoringChart from '../components/EnergeMonitoringChart';
|
|
export default {
|
|
name: 'EnergyMonitoring',
|
|
components: { Container, EnergeMonitoringChart },
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
<style lang='scss' scoped>
|
|
.timeToggle {
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 30px;
|
|
}
|
|
</style> |