EchartsDetail.vue 570 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div class="report-echarts">
  3. <div class="chart_title">{{title}}</div>
  4. <ve-histogram
  5. height="284px"
  6. :data="projectData"
  7. :after-config="Config"
  8. >
  9. </ve-histogram>
  10. </div>
  11. </template>
  12. <script>
  13. import { VeHistogram } from 'v-charts'
  14. export default {
  15. props: ['title', 'projectData', 'Config'],
  16. name: 'report-echarts',
  17. components: {
  18. VeHistogram
  19. }
  20. }
  21. </script>
  22. <style lang="scss" scoped>
  23. .report-echarts{
  24. width: 100%;
  25. .chart_title{
  26. font-size: 18px;
  27. color: #1d1d1d;
  28. line-height: 28px;
  29. }
  30. }
  31. </style>