vehicle-monitor/src/views/big-data/index.vue

36 lines
851 B
Vue
Raw Normal View History

2025-03-11 23:21:59 +08:00
<script lang="ts" setup>
2025-03-13 18:39:39 +08:00
import { onBeforeMount } from 'vue';
import { useAppStore } from '@/store/app';
2025-03-11 23:21:59 +08:00
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';
2025-03-13 18:39:39 +08:00
const appStore = useAppStore();
onBeforeMount(async () => {
2025-03-15 16:38:44 +08:00
appStore.setBackground('@/assets/images/common/bg/bg-secondary.png');
2025-03-13 18:39:39 +08:00
});
2025-03-11 23:21:59 +08:00
</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;
2025-03-13 18:39:39 +08:00
padding: 0 25px 14px 25px;
2025-03-12 09:42:48 +08:00
width: 100%;
height: 100%;
@include view-style-default(530px, 748px);
}
2025-03-11 23:21:59 +08:00
</style>