chenzhou/src/pages/DataPage.vue

37 lines
640 B
Vue
Raw Normal View History

2024-01-16 17:02:53 +08:00
<!-- 实时数据页面 -->
<script setup>
import HourChart from "../components/HourChart.vue";
import TeamChartDay from "../components/TeamChartDay.vue";
import TeamChartMonth from "../components/TeamChartMonth.vue";
</script>
<template>
<div class="data-page">
<div class="data-list">
<HourChart />
<TeamChartDay />
<TeamChartMonth />
</div>
</div>
</template>
<style scoped>
.data-page {
flex: 1;
position: relative;
}
.data-list {
height: 100%;
width: 480px;
position: absolute;
top: 0;
2024-01-18 11:09:34 +08:00
right: 32px;
2024-01-16 17:02:53 +08:00
display: flex;
flex-direction: column;
2024-01-18 11:09:34 +08:00
justify-content: space-around;
2024-01-16 17:02:53 +08:00
}
</style>