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

22 lines
669 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"
2026-04-24 17:46:41 +08:00
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 />
2026-04-24 17:46:41 +08:00
<EnvironmentalQuality />
</RightDrawer>
</div>
2026-03-27 14:50:35 +08:00
</div>
</template>
<style scoped lang="scss"></style>