2025-05-13 16:26:43 +08:00
|
|
|
<template>
|
|
|
|
<div class="bottomLeft">
|
|
|
|
<div class="bg-color-black">
|
|
|
|
<div class="d-flex pt-2 pl-2">
|
|
|
|
<span>
|
|
|
|
<i class="iconfont icon-chart-line" />
|
|
|
|
</span>
|
|
|
|
<div class="d-flex">
|
2025-05-14 15:14:08 +08:00
|
|
|
<span class="fs-xl text mx-2 mt-1" style="font-size: 12px">数据统计图</span>
|
2025-05-13 16:26:43 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<chart />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import Chart from "./chart/index.vue";
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
$box-height: 520px;
|
|
|
|
$box-width: 100%;
|
|
|
|
.bottomLeft {
|
|
|
|
padding: 20px 16px;
|
|
|
|
height: $box-height;
|
|
|
|
width: $box-width;
|
|
|
|
border-radius: 5px;
|
|
|
|
.bg-color-black {
|
|
|
|
height: $box-height - 35px;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
color: #c3cbde;
|
|
|
|
}
|
|
|
|
.chart-box {
|
|
|
|
margin-top: 16px;
|
|
|
|
width: 170px;
|
|
|
|
height: 170px;
|
|
|
|
.active-ring-name {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|