phenologyPage.vue 575 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="chart-list">
  3. <div class="chart-item">
  4. <chart-box name="物候进程" arrow="left"></chart-box>
  5. </div>
  6. <div class="chart-item">
  7. <chart-box name="异常预警" arrow="left"></chart-box>
  8. </div>
  9. </div>
  10. </template>
  11. <script setup>
  12. import chartBox from "@/components/chartBox.vue";
  13. </script>
  14. <style lang="scss" scoped>
  15. .chart-list {
  16. width: calc(100% - 54px - 10px);
  17. height: calc(100% - 30px);
  18. .chart-item {
  19. width: 100%;
  20. height: calc(100% / 4);
  21. box-sizing: border-box;
  22. margin-bottom: 10px;
  23. }
  24. }
  25. </style>