2025-11-14 16:34:39 +08:00
|
|
|
<template>
|
2025-11-14 16:46:34 +08:00
|
|
|
<div class="ueScreen">
|
|
|
|
|
<Header />
|
2025-11-14 19:20:32 +08:00
|
|
|
<LeftPage />
|
2025-11-14 16:46:34 +08:00
|
|
|
</div>
|
2025-11-14 16:34:39 +08:00
|
|
|
</template>
|
|
|
|
|
|
2025-11-14 16:46:34 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import Header from './components/header.vue';
|
2025-11-14 19:20:32 +08:00
|
|
|
import LeftPage from './components/leftPage.vue';
|
2025-11-14 16:46:34 +08:00
|
|
|
</script>
|
2025-11-14 16:34:39 +08:00
|
|
|
|
2025-11-14 16:38:51 +08:00
|
|
|
<style scoped lang="scss">
|
|
|
|
|
@import '@/views/ueScreen/gis.scss';
|
2025-11-14 16:34:39 +08:00
|
|
|
.ueScreen {
|
|
|
|
|
width: 100vw;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
background-color: rgba(4, 7, 17, 0.8);
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
</style>
|