web
2025-06-20 9bb6d0b9d8078a0311d16a1faefef9c2330f4d29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<template>
    <div class="home">
        <!-- 顶部菜单占位符 -->
        <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>