BarAndLine.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <template>
  2. <a-spin :spinning="spinning" style="width: 100%; height: 100%; position: fixed" />
  3. <div v-if="!spinning" ref="chartRef" :style="{ height, width }"></div>
  4. </template>
  5. <script lang="ts">
  6. import { defineComponent, PropType, ref, Ref, reactive, watchEffect, watch } from 'vue';
  7. import { useECharts } from '/@/hooks/web/useECharts';
  8. import { toEchartsData } from '/@/utils/ventutil';
  9. import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
  10. import EchartsUtil from '/@/utils/echartsUtil';
  11. export default defineComponent({
  12. name: 'BarAndLine',
  13. props: {
  14. chartsColumns: {
  15. type: Array,
  16. default: () => [],
  17. },
  18. chartsColumnsType: {
  19. type: String,
  20. required: true,
  21. },
  22. chartsType: {
  23. type: String,
  24. default: 'listMonitor',
  25. },
  26. dataSource: {
  27. type: Array,
  28. default: () => [],
  29. },
  30. option: {
  31. type: Object,
  32. default: () => ({}),
  33. },
  34. xAxisPropType: {
  35. type: String,
  36. required: true,
  37. },
  38. width: {
  39. type: String as PropType<string>,
  40. default: '100%',
  41. },
  42. height: {
  43. type: String as PropType<string>,
  44. default: 'calc(100vh - 78px)',
  45. },
  46. },
  47. setup(props) {
  48. const spinning = ref<boolean>(true);
  49. const chartRef = ref<HTMLDivElement | null>(null);
  50. const { setOptions, echarts } = useECharts(chartRef as Ref<HTMLDivElement>);
  51. const chartData = getTableHeaderColumns(props.chartsColumnsType) || [];
  52. let chartsColumns = props.chartsColumns.length > 0 ? props.chartsColumns : chartData;
  53. const option = reactive({
  54. name: '',
  55. color: ['#7B68EE', '#0000CD', '#6495ED', '#00BFFF', '#AFEEEE', '#008080', '#00FA9A', '#2E8B57', '#FAFAD2', '#DAA520'],
  56. tooltip: null,
  57. grid: null,
  58. toolbox: {
  59. feature: {
  60. saveAsImage: {
  61. iconStyle: {
  62. normal: {
  63. borderColor: '#ffffff',
  64. },
  65. },
  66. show: true,
  67. },
  68. },
  69. },
  70. dataZoom: null,
  71. legend: null,
  72. timeline: null,
  73. xAxis: null,
  74. yAxis: null,
  75. series: null,
  76. });
  77. let optionUtil;
  78. watchEffect(() => {
  79. props.dataSource && props.dataSource.length > 0 && option.series && initCharts();
  80. });
  81. watch([() => props.chartsType, () => props.chartsColumns], ([newChartsType, newChartsColumns]) => {
  82. chartsColumns = newChartsColumns;
  83. optionUtil.initChartOption(props.chartsType, chartsColumns);
  84. });
  85. function initChartsOption() {
  86. optionUtil = new EchartsUtil(option);
  87. optionUtil.initChartOption(props.chartsType, chartsColumns);
  88. }
  89. initChartsOption();
  90. function initCharts() {
  91. //轴数据
  92. if (option.series && option.series.length === chartsColumns.length) {
  93. let xAxisData = props.dataSource.map((item) => item[props.xAxisPropType]);
  94. [...chartsColumns].forEach((propType: any, index) => {
  95. option.series[index].data = props.dataSource.map((item) => item[propType.dataIndex] || 0);
  96. });
  97. option.xAxis[0].data = xAxisData;
  98. setOptions(option, false);
  99. }
  100. }
  101. setTimeout(() => {
  102. spinning.value = false;
  103. }, 1000);
  104. return { chartRef, spinning };
  105. },
  106. });
  107. </script>
  108. <style>
  109. .spin-state {
  110. margin-top: 16px;
  111. }
  112. </style>