38 lines
652 B
Vue
38 lines
652 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;
|
||
|
background: #ccc3;
|
||
|
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
</style>
|