<template> <!-- 数据采集子系统首页 直接引用排水防涝一张图的物联感知--> <div class="publicContainer syndataMainPage"> <DataContent class="content"></DataContent> </div> </template> <script setup> import DataContent from '@/views/floodSys/floodOneMap/index_1.vue'; import bus from '@/bus'; const { proxy } = getCurrentInstance(); onMounted(() => { // 显示物联感知 bus.emit('changeTableContent', 2); }); </script> <style lang="scss"> .syndataMainPage { .changeTabList, .lengendPage, .centerWarnSea, .isOpenBuildingTL { display: none !important; } } </style>