ComPage.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <div id="common">
  3. <boat-panel v-if="boatPanelShow" :boat-info="boatPanelInfo.value" @close-boat-panel="boatPanelShow=false"/>
  4. <scene-box v-if="sceneBoxShow"/>
  5. <pic-viewer v-if="picViewShow" :pic-list="picList.value" @close-pic-viewer="picViewShow=false"></pic-viewer>
  6. <under-water-legend/>
  7. <MapArea @changeBaseMap="" />
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'ComPage'
  13. }
  14. </script>
  15. <script setup>
  16. import { reactive, ref, watch, computed } from 'vue';
  17. import bus from '@/utils/bus'
  18. import BoatPanel from './cpns/boatPanel/Index.vue'
  19. import SceneBox from './cpns/SceneBox.vue';
  20. import PicViewer from './cpns/PicViewer.vue';
  21. import UnderWaterLegend from './cpns/UnderWaterLegend.vue';
  22. import MapArea from '@/views/map/BaseMapArea.vue'
  23. import {locationBoat,clearBoatHistoryPath} from "@/utils/map/Boat";
  24. const boatPanelShow = ref(false)
  25. const boatPanelInfo = reactive({value: {}})
  26. //船舶面板显示-增加定位
  27. bus.on('ueRec_BoatClick', (data) => {
  28. boatPanelInfo.value = data
  29. boatPanelShow.value = true
  30. locationBoat(data.mmsi,true)
  31. bus.emit('closeAllBoatDockList')
  32. })
  33. watch(boatPanelShow, (newValue, oldValue) => {
  34. if (!newValue){
  35. locationBoat( null,false)
  36. }
  37. clearBoatHistoryPath()
  38. });
  39. bus.on('ueRec_BoatNotFound', (data) => {
  40. boatPanelInfo.value = data
  41. boatPanelShow.value = true
  42. })
  43. const sceneBoxShow = ref(false)
  44. bus.on('toggleSceneBox', () => {
  45. sceneBoxShow.value = !sceneBoxShow.value
  46. })
  47. const picViewShow = ref(false)
  48. const picList = reactive({value: []})
  49. bus.on('showPicViewer', (data) => {
  50. picList.value = data
  51. picViewShow.value = true
  52. })
  53. </script>
  54. <style lang="scss" scoped>
  55. #common {
  56. #boat-panel {
  57. z-index: 1;
  58. }
  59. #scene-box {
  60. z-index: 1;
  61. }
  62. #pic-viewer {
  63. z-index: 2;
  64. }
  65. }
  66. </style>