样式修改

This commit is contained in:
扈兆增 2026-04-02 09:35:08 +08:00
parent fb76f42760
commit 91d482a0f4
2 changed files with 22 additions and 27 deletions

View File

@ -63,6 +63,15 @@ svg {
height: 100%; height: 100%;
background-color: #ffffff; background-color: #ffffff;
} }
.moduleContent{
display: flex;
flex-direction: row;
justify-content: space-between;
height: 100%;
position: relative;
}
.leftContent { .leftContent {
width: 188px; width: 188px;
} }
@ -70,3 +79,4 @@ svg {
height: 98%; height: 98%;
position: relative; position: relative;
} }

View File

@ -1,12 +1,11 @@
<script setup lang="ts"> <script setup lang="ts">
import JidiSelectorMod from "@/modules/jidiSelectorMod.vue"; import JidiSelectorMod from "@/modules/jidiSelectorMod.vue";
import RightDrawer from "@/components/RightDrawer/index.vue"; import RightDrawer from "@/components/RightDrawer/index.vue";
import jidiInfoMod from '@/modules/jidiInfoMod/index.vue'; import jidiInfoMod from "@/modules/jidiInfoMod/index.vue";
import shuidianhuangjingjieruMod from '@/modules/shuidianhuangjingjieruMod/index.vue'; import shuidianhuangjingjieruMod from "@/modules/shuidianhuangjingjieruMod/index.vue";
</script> </script>
<template> <template>
<div class="all_width">
<div class="moduleContent"> <div class="moduleContent">
<div class="leftContent"> <div class="leftContent">
<JidiSelectorMod /> <JidiSelectorMod />
@ -18,19 +17,5 @@ import shuidianhuangjingjieruMod from '@/modules/shuidianhuangjingjieruMod/index
</RightDrawer> </RightDrawer>
</div> </div>
</div> </div>
</div>
</template> </template>
<style lang="scss"> <style scoped lang="scss"></style>
.all_width{
width: 100%;
.moduleContent{
display: flex;
justify-content: space-between;
.rightContent{
height: 88vh;
width: 450px;
}
}
}
</style>