web
2025-06-20 9bb6d0b9d8078a0311d16a1faefef9c2330f4d29
src/views/screen/index.vue
@@ -1,17 +1,33 @@
<template>
    <div class="home">
        11111
        <!-- 顶部菜单占位符 -->
        <div class="home-t"></div>
        <div class="home-content">11</div>
    </div>
</template>
<script setup>
import { ref } from 'vue'
</script>
<style scoped lang="scss">
.home{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('@/assets/images/map-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 10;
    &-t{
        height: 10%;
    }
    &-content{
        height: 90%;
    }
}
</style>