index.vue 837 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div class="iot-data-analysis">
  3. <IOTHeader/>
  4. <IOTLeft/>
  5. <IOTRight/>
  6. <IOTLIstDialog/>
  7. <!-- <IOTToolDialog/> -->
  8. <div class="gis-map" id="gisMap" ref="gisMapRef">
  9. <Map/>
  10. </div>
  11. </div>
  12. </template>
  13. <script setup>
  14. import { ref } from 'vue'
  15. import IOTHeader from './components/IOTHeader.vue'
  16. import IOTLeft from './components/IOTLeft.vue';
  17. import IOTRight from './components/IOTRight.vue';
  18. import IOTLIstDialog from './components/IOTLIstDialog.vue';
  19. import IOTToolDialog from './components/IOTToolDialog.vue';
  20. import Map from './map/Map.vue'
  21. const gisMapRef = ref(null)
  22. </script>
  23. <style scoped lang="scss">
  24. .iot-data-analysis{
  25. width: 100vw;
  26. height: 100vh;
  27. font-size: 18px;
  28. .gis-map{
  29. width: 100%;
  30. height: 100%;
  31. background-color: #dddddd;
  32. }
  33. }
  34. </style>