- <template>
- <div class="partTitleHM">建设状态</div>
- <div class="ConstrucClass">
- <ConstructionDrawings :data="chartData2" :refresh="refresh"></ConstructionDrawings>
- </div>
- </template>
- <script setup>
- import ConstructionDrawings from '@/views/sponeScreen/Echarts/ConstructionDrawings.vue'; //年际降雨变化
- const chartData2 = ref([]);
- const refresh = ref(1);
- </script>
- <style lang="scss" scoped>
- .ConstrucClass {
- width: 100%;
- height: 260px;
- background: #004565;
- opacity: 0.8;
- margin-top: -3px;
- }
- </style>