Newer
Older
KaiFengPC / src / views / sponeScreen / chengguanweiScreen / mainIndex.vue
@zhangdeliang zhangdeliang on 22 Jun 905 bytes update
<template>
  <!-- 3800*866 城管委-->
  <div class="cgwFivthScreen">
    3800*866 城管委
    <img src="@/assets/newImgs/HMScreen/main.png" alt="" title="跳转业务系统" class="mainYW" @click="goSystem" />
    <!-- 地图 -->
    <GisMapMF></GisMapMF>
    <!-- 图例 -->
    <!-- <Legend></Legend> -->
  </div>
</template>

<script setup>
import GisMapMF from '@/views/sponeScreen/gisMF/cesiumMap.vue';
import Legend from '@/views/sponeScreen/gisMF/legendKF.vue';
const { proxy } = getCurrentInstance();

// 跳转业务系统
function goSystem() {
  router.push({ path: '/index' });
}

onMounted(() => {});
</script>

<style lang="scss" scoped>
.cgwFivthScreen {
  // prettier-ignore
  width:3800PX;
  height: 866px;
  background: #010e22;
  overflow: auto;
  position: relative;
  .mainYW {
    width: 50px;
    height: 44px;
    cursor: pointer;
    margin: 10px 10px 0px 30px;
  }
}
</style>