Newer
Older
KaiFengPC / src / views / sponeScreen / projectHM / ConstructionStatus.vue
@zhangdeliang zhangdeliang on 7 Aug 532 bytes update
  1. <template>
  2. <div class="partTitleHM">建设状态</div>
  3.  
  4. <div class="ConstrucClass">
  5. <ConstructionDrawings :data="chartData2" :refresh="refresh"></ConstructionDrawings>
  6. </div>
  7. </template>
  8. <script setup>
  9. import ConstructionDrawings from '@/views/sponeScreen/Echarts/ConstructionDrawings.vue'; //年际降雨变化
  10.  
  11. const chartData2 = ref([]);
  12. const refresh = ref(1);
  13. </script>
  14.  
  15. <style lang="scss" scoped>
  16. .ConstrucClass {
  17. width: 100%;
  18. height: 260px;
  19. background: #004565;
  20. opacity: 0.8;
  21. margin-top: -3px;
  22. }
  23. </style>