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

37 lines
874 B
Vue
Raw Normal View History

<script setup lang="ts">
import JidiSelectorMod from "@/modules/jidiSelectorMod.vue";
import RightDrawer from "@/components/RightDrawer/index.vue";
import HuanbaoMod from "@/modules/huanbaoMod/index.vue" // 环保设施建设情况
import Dianxingcuoshijieshao from "@/modules/dianxingcuoshijieshao/index.vue" // 环保设施建设情况
</script>
2026-03-27 14:50:35 +08:00
<template>
<div class="all_width">
<div class="moduleContent">
<div class="leftContent">
<JidiSelectorMod />
</div>
<div class="rightContent">
<RightDrawer>
<HuanbaoMod />
<Dianxingcuoshijieshao />
</RightDrawer>
</div>
</div>
2026-03-27 14:50:35 +08:00
</div>
</template>
<style lang="scss">
.all_width{
width: 100%;
.moduleContent{
display: flex;
justify-content: space-between;
.rightContent{
height: 88vh;
width: 450px;
}
}
}
</style>