9852b9298d6a43cc27797c2e48345d4626c66239.svn-base 620 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div>
  3. <a-row :gutter="24">
  4. <template v-for="(graphType,index) in graphTypeDictOptions">
  5. <a-col :xl="col.xl" :lg="col.lg" :md="col.md" :sm="col.sm" :key="index">
  6. <chart :title="title" :chartData="chartData" :head="head" :graphType="graphType.value" :aliases="aliases" />
  7. </a-col>
  8. </template>
  9. </a-row>
  10. </div>
  11. </template>
  12. <script>
  13. import Chart from './Chart'
  14. export default {
  15. name: 'RowGraphreportAutoChart',
  16. components: {
  17. Chart
  18. },
  19. props: ['chartData', 'head', 'graphTypeDictOptions', 'col', 'title', 'aliases']
  20. }
  21. </script>
  22. <style scoped>
  23. </style>