WholeProcessPlatform/frontend/src/views/home/huanBaoSheShiYunXingZhuangKuang.vue
2026-04-02 10:54:14 +08:00

22 lines
671 B
Vue

<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>
<template>
<div class="moduleContent">
<div class="leftContent">
<JidiSelectorMod />
</div>
<div class="rightContent">
<RightDrawer>
<HuanbaoMod />
<Dianxingcuoshijieshao />
</RightDrawer>
</div>
</div>
</template>
<style scoped lang="scss"></style>