Health4.vue 838 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="health-4">
  3. <simple-line-chart :height="'100px'" />
  4. <simple-line-chart :height="'100px'" :color="'yellow'" :title="'发电机'" />
  5. <simple-line-chart :height="'100px'" :color="'purple'" :title="'变桨系统'" />
  6. <simple-line-chart :height="'100px'" :color="'blue'" :title="'主控系统'" />
  7. <simple-line-chart :height="'100px'" :color="'orange'" :title="'齿轮箱'" />
  8. </div>
  9. </template>
  10. <script>
  11. import SimpleLineChart from "../../components/chart/line/simple-line-chart.vue";
  12. export default {
  13. setup() {},
  14. components: { SimpleLineChart },
  15. data() {
  16. return {};
  17. },
  18. created() {},
  19. };
  20. </script>
  21. <style lang="less">
  22. .health-4 {
  23. padding: 0 40px;
  24. display: flex;
  25. flex-direction: column;
  26. justify-content: space-around;
  27. height: 100%;
  28. .chart {
  29. flex: 0;
  30. }
  31. }
  32. </style>