Newer
Older
DH_Apicture / src / views / pictureOnMap / page / FloodControlAndDrainage / Fuzhujuece / AuxiliaryResearchAndJudgmentLeft / index.vue
@zhangqy zhangqy 28 days ago 954 bytes first commit
<template>
  <!-- 防汛排涝   辅助决策  左侧   辅助研判-->
  <div class="AuxiliaryResearchAndJudgmentLeft">
    <div class="moduleBox moduleBoxLeft flex flex-v">
        <div class="">
            <!-- 值班 -->
            <Beonduty></Beonduty>
        </div>
        <div class="">
            <!-- 防汛检查 -->
            <Fangxunjiancha></Fangxunjiancha>
        </div>
        <div class="flex-1">
            <!-- 预案分析 -->
            <YuAnfenxi></YuAnfenxi>
        </div>
    </div>
  </div>
</template>
<script setup name="AuxiliaryResearchAndJudgmentLeft">
import Beonduty from './component/Beonduty.vue'
import YuAnfenxi from './component/YuAnfenxi.vue'
import Fangxunjiancha from './component/Fangxunjiancha.vue'


import { ref, reactive, onMounted } from 'vue';

const { proxy } = getCurrentInstance();


onMounted(() => {});
</script>
<style lang="scss" scoped>
.AuxiliaryResearchAndJudgmentLeft {

  
}
</style>