WholeProcessPlatform/frontend/src/views/home/shuiDianKaiFaZhuangKuang.vue

37 lines
839 B
Vue
Raw Normal View History

2026-03-27 15:52:43 +08:00
<script setup lang="ts">
import JidiSelectorMod from "@/modules/jidiSelectorMod.vue";
import RightDrawer from "@/components/RightDrawer/index.vue";
import jidiInfoMod from '@/modules/jidiInfoMod/index.vue';
import shuidianhuangjingjieruMod from '@/modules/shuidianhuangjingjieruMod/index.vue';
2026-03-27 15:52:43 +08:00
</script>
2026-03-27 14:50:35 +08:00
<template>
<div class="all_width">
2026-03-27 15:52:43 +08:00
<div class="moduleContent">
<div class="leftContent">
<JidiSelectorMod />
</div>
<div class="rightContent">
<RightDrawer>
<jidiInfoMod />
<shuidianhuangjingjieruMod />
</RightDrawer>
2026-03-27 15:52:43 +08:00
</div>
</div>
2026-03-27 14:50:35 +08:00
</div>
2026-03-27 15:52:43 +08:00
</template>
2026-03-30 11:05:33 +08:00
<style lang="scss">
.all_width{
width: 100%;
.moduleContent{
2026-03-30 11:05:33 +08:00
display: flex;
justify-content: space-between;
.rightContent{
height: 88vh;
width: 450px;
2026-03-30 11:05:33 +08:00
}
}
}
2026-03-30 11:05:33 +08:00
</style>