123456789101112131415161718192021222324252627282930313233 |
- <template>
- <div class="chart-list">
- <div class="chart-item">
- <chart-box name="气象预警" arrow="left"></chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="物候调节" arrow="left"></chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="病虫测报" arrow="left"></chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="树势评估" arrow="left"></chart-box>
- </div>
- </div>
- </template>
- <script setup>
- import chartBox from "@/components/chartBox.vue";
- </script>
- <style lang="scss" scoped>
- .chart-list {
- width: calc(100% - 54px - 10px);
- height: calc(100% - 30px);
- .chart-item {
- width: 100%;
- height: calc(100% / 4);
- box-sizing: border-box;
- margin-bottom: 10px;
- }
- }
- </style>
|