胡思旗
2023-08-28 dcfcb1f1c1f0e0d9084082b14f2b8997dca6fe0f
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
34
35
36
37
38
39
40
41
42
<template>
    <div class="project_list">
        <div class="left_content">
            <router-view />
        </div>
        <div class="right_content">
            <div class="map">
                <Map />
            </div>
        </div>
    </div>
</template>
 
<script setup lang="ts">
import Map from '/@/components/cesiumMap/cesium.vue'
</script>
 
<style scoped lang="scss">
.project_list {
    display: flex;
    transition: width 0.2s ease;
    height: 100%;
    width: 100%;
 
    .left_content {
        width: 335px;
        min-height: 100vh;
        background-color: black;
        color:$text-white-basic;
    }
 
    .right_content {
        position: relative;
        flex:1;
 
        .map {
            width: 100%;
            height: 100%;
        }
    }
}
</style>