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

36 lines
829 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-04-16 23:11:49 +08:00
appStore.setBackground('/images/bg/bg03.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-05-15 23:10:31 +08:00
padding: 0 14px;
2025-03-12 09:42:48 +08:00
width: 100%;
height: 100%;
2025-03-16 23:03:46 +08:00
@include view-style-default(530px, 800px, #122953b3);
2025-03-12 09:42:48 +08:00
}
2025-03-11 23:21:59 +08:00
</style>