Newer
Older
KaiFengPC / src / views / sponeScreen / chengguanweiScreen / mainIndex.vue
@zhangdeliang zhangdeliang on 22 Jun 905 bytes update
  1. <template>
  2. <!-- 3800*866 城管委-->
  3. <div class="cgwFivthScreen">
  4. 3800*866 城管委
  5. <img src="@/assets/newImgs/HMScreen/main.png" alt="" title="跳转业务系统" class="mainYW" @click="goSystem" />
  6. <!-- 地图 -->
  7. <GisMapMF></GisMapMF>
  8. <!-- 图例 -->
  9. <!-- <Legend></Legend> -->
  10. </div>
  11. </template>
  12.  
  13. <script setup>
  14. import GisMapMF from '@/views/sponeScreen/gisMF/cesiumMap.vue';
  15. import Legend from '@/views/sponeScreen/gisMF/legendKF.vue';
  16. const { proxy } = getCurrentInstance();
  17.  
  18. // 跳转业务系统
  19. function goSystem() {
  20. router.push({ path: '/index' });
  21. }
  22.  
  23. onMounted(() => {});
  24. </script>
  25.  
  26. <style lang="scss" scoped>
  27. .cgwFivthScreen {
  28. // prettier-ignore
  29. width:3800PX;
  30. height: 866px;
  31. background: #010e22;
  32. overflow: auto;
  33. position: relative;
  34. .mainYW {
  35. width: 50px;
  36. height: 44px;
  37. cursor: pointer;
  38. margin: 10px 10px 0px 30px;
  39. }
  40. }
  41. </style>