2025-03-11 23:21:59 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import BigDataContent from '@/views/big-data/components/big-data-content/index.vue';
|
|
|
|
import BigDataLeft from '@/views/big-data/components/big-data-left/index.vue';
|
|
|
|
import BigDataRight from '@/views/big-data/components/big-data-right/index.vue';
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="big-data">
|
|
|
|
<big-data-left />
|
|
|
|
<big-data-content />
|
|
|
|
<big-data-right />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss">
|
2025-03-12 09:42:48 +08:00
|
|
|
.big-data {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 19px 25px;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
@include view-style-default(530px, 748px);
|
|
|
|
}
|
2025-03-11 23:21:59 +08:00
|
|
|
</style>
|