This commit is contained in:
shi
2025-11-15 10:08:05 +08:00
parent 087535587c
commit 12bd03da73
2 changed files with 24 additions and 6 deletions

View File

@ -89,6 +89,7 @@ $vh_base: 1080;
gap: vh(20); gap: vh(20);
width: 100%; width: 100%;
height: 100%; height: 100%;
padding-bottom: vh(20);
} }
.statistic { .statistic {

View File

@ -1,21 +1,24 @@
<template> <template>
<div class="ueScreen"> <div class="ueScreen">
<Header /> <Header />
<LeftPage /> <div class="content_box">
</div> <LeftPage class="left" />
<div class="right"> <!-- <div>ue</div> -->
<Right /> <RightPage class="right" />
</div>
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import Header from './components/header.vue'; import Header from './components/header.vue';
import LeftPage from './components/leftPage.vue'; import LeftPage from './components/leftPage.vue';
import RightPage from './components/rightPage.vue';
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
$vm_base: 1920; $vm_base: 1920;
$vh_base: 1080; $vh_base: 1080;
// 计算vw // 计算vw
@function vw($px) { @function vw($px) {
@return calc(($px / $vm_base) * 100vw); @return calc(($px / $vm_base) * 100vw);
@ -33,11 +36,25 @@ $vh_base: 1080;
color: #fff; color: #fff;
} }
.content_box {
position: relative;
width: 100vw;
height: calc(100vh - 8vh);
}
.left {
position: absolute;
top: 0;
left: vw(20);
width: 25vw;
height: 100%;
}
.right { .right {
position: absolute; position: absolute;
top: vh(60); top: 0;
right: vw(20); right: vw(20);
width: 25vw; width: 25vw;
height: calc(100vh - vh(80)); height: 100%;
} }
</style> </style>