54 lines
1.3 KiB
Vue
Raw Normal View History

2025-03-14 17:52:05 +08:00
<template>
<div class="data-home-index">
<baseBg :name-val="'land'">
<template #center>
<el-row style="width: 100%; height: 100%">
<el-col :span="6" class="left-charts">
<div class="left-charts-item"></div>
<div class="left-charts-item"></div>
<div class="left-charts-item"></div>
</el-col>
<el-col :span="12"></el-col>
<el-col :span="6" class="right-charts">
<!-- <div class="right-charts-item"></div>
<div class="right-charts-item"></div>
<div class="right-charts-item"></div> -->
</el-col>
</el-row>
</template>
</baseBg>
</div>
</template>
<script setup>
import baseBg from '@/components/baseBg.vue';
</script>
<style lang="scss" scoped>
.data-home-index {
.left-charts {
display: flex;
justify-content: space-around;
width: 100%;
height: 100%;
flex-direction: column;
}
.left-charts-item {
width: 100%;
height: calc((100% - 30px) / 3);
background: #fff;
}
.right-charts {
display: flex;
justify-content: space-around;
width: 100%;
height: 100%;
flex-direction: column;
}
.right-charts-item {
width: 100%;
height: calc((100% - 30px) / 3);
background: #fff;
}
}
</style>