This commit is contained in:
lcw
2025-11-22 21:59:58 +08:00
parent ea3022c3f6
commit 93c49dff27
661 changed files with 195357 additions and 2160 deletions

View File

@ -0,0 +1,42 @@
<template>
<div class="comom-title">
<div class="title">预警数据</div>
<div class="expand-btn" >
<el-icon size="20">
<ArrowDownBold v-if="isExpanded" />
<ArrowUpBold v-else />
</el-icon>
</div>
</div>
<div class=" zdryBox" >
</div>
</template>
<script setup>
import { ArrowDownBold, ArrowUpBold } from '@element-plus/icons-vue';
import emitter from '@/utils/emitter.js';
import { ref, onMounted, onUnmounted } from 'vue';
const isShow = ref({
showYj: false, //预警弹窗
showWarning: false
});
const list = reactive({
Info_YJ: [], //预警数据
Info_Warning: [],
});
onMounted(() => {
emitter.on("showHomeYJ", (val) => {
});
});
onUnmounted(() => {
emitter.off("showHomeYJ");
});
</script>
<style>
</style>