<template> <!-- 海绵综合一张图首页 --> <div class="hmMainPage"> 海绵综合一张图首页4k分辨率 <el-button type="primary" @click="zxt">跳转子系统</el-button> <!-- 地图 --> <!-- <GisMapMF></GisMapMF> --> <legend></legend> </div> </template> <script setup> import bus from '@/bus'; import GisMapMF from '@/views/sponeScreen/gisMF/cesiumMap.vue'; import legend from '@/views/sponeScreen/gisMF/legend.vue'; const router = useRouter(); function zxt() { router.push({ path: '/index' }); } onMounted(() => {}); </script> <style scoped lang="scss"> .hmMainPage { width: 100%; height: 100%; background: #010e22; position: relative; } </style>