chenzhou/src/pages/DataPage.vue
2024-01-18 11:23:52 +08:00

37 lines
640 B
Vue

<!-- 实时数据页面 -->
<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;
right: 32px;
display: flex;
flex-direction: column;
justify-content: space-around;
}
</style>