guonan
7 天以前 a57caa72a54efe9de3fe26a6c36d3e8038267377
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
    <div>
        <Device />
        <Legend class="legend"/>
    </div>
    
</template>
 
<script setup>
import Legend from "@/components/tools/Legend_zhjc.vue";
import Device from "@/components/menu/Device.vue"
</script>
<style lang="less" scoped>
    .legend{
    // background: url("@/assets/img/right/rightbg.png");
    color: white;
        position: fixed;
        bottom: 6%;
        right: 1%;
        z-index: 3333;
    }
    @import url("../assets/css/home.css");
</style>