2026-04-13 17:25:17 +08:00
|
|
|
<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>
|
2026-04-13 17:25:17 +08:00
|
|
|
<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>
|
2026-04-13 17:25:17 +08:00
|
|
|
<style scoped lang="scss"></style>
|