WholeProcessPlatform/frontend/src/views/shuiZhiJianCe/shuiHuanJingZhiLiangZhuangKuang.vue

22 lines
681 B
Vue
Raw Normal View History

<script setup lang="ts">
import JidiSelectorMod from "@/modules/jidiSelectorMod.vue";
import RightDrawer from "@/components/RightDrawer/index.vue";
import ShuiZhiJianCeGongZuoQingKuang from "@/modules/shuizhijiancegongzuoQK/index.vue"
// import EnvironmentalQuality from "@/modules/environmentalQuality/index.vue" // 环境质量满足度
</script>
2026-03-27 14:50:35 +08:00
<template>
<div class="moduleContent">
<div class="leftContent">
<JidiSelectorMod />
</div>
<div class="rightContent">
<RightDrawer>
<ShuiZhiJianCeGongZuoQingKuang />
<!-- <EnvironmentalQuality /> -->
</RightDrawer>
</div>
2026-03-27 14:50:35 +08:00
</div>
</template>
<style scoped lang="scss"></style>