trike-datav/src/App.vue

38 lines
770 B
Vue
Raw Normal View History

2023-11-27 17:18:03 +08:00
<script setup>
2023-11-30 18:36:25 +08:00
import headView from "@/components/headView.vue";
2023-11-29 18:49:31 +08:00
import Businesses from "@/components/Businesses.vue"
2023-11-27 17:18:03 +08:00
</script>
<template>
<dv-full-screen-container class="body">
2023-11-30 18:36:25 +08:00
<headView></headView>
<div style="height: calc(100% - 60px)">
<router-view></router-view>
</div>
2023-11-29 18:49:31 +08:00
<Businesses class="businesses"></Businesses>
2023-11-27 17:18:03 +08:00
</dv-full-screen-container>
</template>
<style scoped lang="scss">
* {
margin: 0;
padding: 0;
}
2023-11-28 18:35:14 +08:00
2023-11-27 17:18:03 +08:00
.body {
background-image: url("/src/assets/img/bg.png");
background-size: 100% 100%;
color: #fff;
background-color: rgba($color: #000000, $alpha: 0.8);
}
2023-11-29 18:49:31 +08:00
.businesses {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 999999;
width: 100%;
height: 100%;
}
2023-11-27 17:18:03 +08:00
</style>