BarAndLine.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <template>
  2. <div v-if="spinning" class="spinning">
  3. <a-spin :spinning="true" />
  4. </div>
  5. <div v-if="!spinning" ref="chartRef" :style="{ height, width }"></div>
  6. </template>
  7. <script lang="ts">
  8. import { defineComponent, PropType, ref, Ref, reactive, watchEffect, watch, nextTick } from 'vue';
  9. import { useECharts } from '/@/hooks/web/useECharts';
  10. import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
  11. import EchartsUtil from '/@/utils/echartsUtil';
  12. import { merge } from 'lodash-es';
  13. type ChartColumn = {
  14. legend: string;
  15. seriesName: string;
  16. ymax: number;
  17. yname: string;
  18. linetype: string;
  19. yaxispos: string;
  20. color: string;
  21. sort: number;
  22. xRotate: number;
  23. dataIndex: string;
  24. };
  25. export default defineComponent({
  26. name: 'BarAndLine',
  27. props: {
  28. chartsColumns: {
  29. type: Array as PropType<ChartColumn[]>,
  30. default: () => [],
  31. },
  32. chartsColumnsType: {
  33. type: String,
  34. },
  35. chartsType: {
  36. type: String,
  37. default: '',
  38. },
  39. dataSource: {
  40. type: Array,
  41. default: () => [],
  42. },
  43. option: {
  44. type: Object,
  45. default: () => ({}),
  46. },
  47. xAxisPropType: {
  48. type: String,
  49. required: true,
  50. },
  51. width: {
  52. type: String as PropType<string>,
  53. default: '100%',
  54. },
  55. height: {
  56. type: String as PropType<string>,
  57. default: 'calc(100vh - 78px)',
  58. },
  59. },
  60. emits: ['refresh'],
  61. setup(props, { emit }) {
  62. const spinning = ref<boolean>(true);
  63. const chartRef = ref<HTMLDivElement | null>(null);
  64. const { setOptions, echarts } = useECharts(chartRef as Ref<HTMLDivElement>);
  65. const chartData = props.chartsColumnsType ? getTableHeaderColumns(props.chartsColumnsType) : [];
  66. let chartsColumns = (props.chartsColumns.length > 0 ? props.chartsColumns : chartData) as ChartColumn[];
  67. let tempYmax: number[] = [];
  68. // let groupedByColumns = {};
  69. const option = reactive({
  70. name: '',
  71. color: ['#7B68EE', '#0000CD', '#6495ED', '#00BFFF', '#AFEEEE', '#008080', '#00FA9A', '#2E8B57', '#FAFAD2', '#DAA520'],
  72. tooltip: {},
  73. grid: {},
  74. toolbox: {
  75. feature: {
  76. saveAsImage: {
  77. iconStyle: {
  78. borderColor: '#ffffff',
  79. },
  80. show: false,
  81. },
  82. },
  83. },
  84. dataZoom: {},
  85. legend: {
  86. textStyle: {
  87. color: '#ffffff', // 字体颜色
  88. },
  89. top: '20',
  90. },
  91. timeline: null,
  92. xAxis: {},
  93. yAxis: null,
  94. series: null,
  95. });
  96. let optionUtil;
  97. watchEffect(() => {
  98. props.dataSource && props.xAxisPropType && option.series && initCharts();
  99. });
  100. watch([() => props.chartsType, () => props.chartsColumns], ([newChartsType, newChartsColumns]) => {
  101. spinning.value = true;
  102. chartsColumns = newChartsColumns;
  103. optionUtil.initChartOption(newChartsType, newChartsColumns);
  104. spinning.value = false;
  105. initCharts(true);
  106. emit('refresh');
  107. });
  108. function initChartsOption() {
  109. // debugger;
  110. optionUtil = new EchartsUtil(merge(option, props.option));
  111. optionUtil.initChartOption(props.chartsType, chartsColumns);
  112. }
  113. initChartsOption();
  114. function initCharts(isRefresh = false) {
  115. if (props.dataSource.length < 1) return;
  116. //轴数据
  117. let isFresh = false;
  118. if (option.series && option.series.length === chartsColumns.length) {
  119. let xAxisData = props.dataSource.map((item) => item[props.xAxisPropType]);
  120. chartsColumns = [...chartsColumns].filter((propType: any, index) => {
  121. if (!propType) return;
  122. if (props.chartsType == 'listMonitor') {
  123. option.series[index].type = 'bar';
  124. }
  125. option.series[index].data = props.dataSource.map((item) => Number(item[propType.dataIndex]) || 0);
  126. // console.log('nnn', option.series[index].data);
  127. // 这里动态计算echarts y轴最大值
  128. const max = Math.max(...option.series[index].data);
  129. const digitCount = max.toFixed(0).length;
  130. let yMax = 0;
  131. if (digitCount < 2) {
  132. if (max < 0.5) {
  133. yMax = 1;
  134. } else if (max < 0.9) {
  135. yMax = 1.5;
  136. } else if (max < 5) {
  137. yMax = 10;
  138. } else {
  139. yMax = 15;
  140. }
  141. } else if (digitCount < 3) {
  142. const n = Number((Number(max.toFixed(0)) / 10).toFixed(0));
  143. if (max < n * 10 + 5) {
  144. yMax = (n + 1) * 10;
  145. } else {
  146. yMax = (n + 2) * 10;
  147. }
  148. } else if (digitCount < 4) {
  149. const n = Number((Number(max.toFixed(0)) / 100).toFixed(0));
  150. if (max < n * 100 + 50) {
  151. yMax = (n + 1) * 100;
  152. } else {
  153. yMax = (n + 2) * 100;
  154. }
  155. } else if (digitCount < 5) {
  156. const n = Number((Number(max.toFixed(0)) / 1000).toFixed(0));
  157. if (max < n * 1000 + 500) {
  158. yMax = (n + 1) * 1000;
  159. } else {
  160. yMax = (n + 1) * 1000 + 500;
  161. }
  162. } else if (digitCount < 6) {
  163. const n = Number((Number(max.toFixed(0)) / 10000).toFixed(0));
  164. if (max < n * 10000 + 5000) {
  165. yMax = (n + 1) * 10000;
  166. } else {
  167. yMax = (n + 1) * 10000 + 5000;
  168. }
  169. }
  170. if (yMax != 0 && yMax !== propType?.ymax) {
  171. propType.ymax = yMax;
  172. }
  173. return true;
  174. });
  175. // 根据sort分组
  176. const groupedBy = {};
  177. for (const item of chartsColumns) {
  178. if (groupedBy[item.sort]) {
  179. groupedBy[item.sort].push(item);
  180. } else {
  181. groupedBy[item.sort] = [item];
  182. }
  183. }
  184. // 根据分组找ymax最大值
  185. const newChartsColumns: ChartColumn[] = [];
  186. let index = 0;
  187. for (let sortId in groupedBy) {
  188. const group = groupedBy[sortId];
  189. let ymax = group[0].ymax;
  190. for (let i = 1; i < group.length; i++) {
  191. if (group[i].ymax > ymax) {
  192. ymax = group[i].ymax;
  193. }
  194. }
  195. if (!tempYmax[index] || tempYmax[index] != ymax) {
  196. tempYmax[index] = ymax;
  197. isFresh = true;
  198. }
  199. for (let i = 0; i < group.length; i++) {
  200. group[i].ymax = ymax;
  201. newChartsColumns.push(group[i]);
  202. }
  203. ++index;
  204. }
  205. chartsColumns = newChartsColumns;
  206. option.xAxis[0].data = xAxisData;
  207. if (isFresh) {
  208. spinning.value = true;
  209. optionUtil.initChartOption(props.chartsType, chartsColumns);
  210. spinning.value = false;
  211. initCharts(true);
  212. nextTick(() => {
  213. setOptions(option, true);
  214. emit('refresh');
  215. });
  216. } else {
  217. // console.log('echarts监测列表数据', option.xAxis[0].data);
  218. setOptions(option, isRefresh);
  219. }
  220. }
  221. }
  222. setTimeout(() => {
  223. spinning.value = false;
  224. initCharts(true);
  225. }, 1000);
  226. return { chartRef, spinning };
  227. },
  228. });
  229. </script>
  230. <style lang="less" scoped>
  231. .spinning {
  232. display: flex;
  233. width: 100%;
  234. height: 100%;
  235. justify-content: center;
  236. align-items: center;
  237. }
  238. </style>