Bar.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <script setup lang="ts">
  2. import { ref, computed, watch, type Ref } from "vue";
  3. import { useAppStoreHook } from "@/store/modules/app";
  4. import {
  5. delay,
  6. useDark,
  7. useECharts,
  8. type EchartOptions,
  9. randomColor
  10. } from "@pureadmin/utils";
  11. import * as echarts from "echarts/core";
  12. import { bar } from "@/api/welcome";
  13. const { isDark } = useDark();
  14. const theme: EchartOptions["theme"] = computed(() => {
  15. return isDark.value ? "dark" : "light";
  16. });
  17. const barChartRef = ref<HTMLDivElement | null>(null);
  18. const { setOptions, resize } = useECharts(barChartRef as Ref<HTMLDivElement>, {
  19. theme
  20. });
  21. let barxList = [];
  22. let nameList = [];
  23. function getList() {
  24. bar()
  25. .then((data) => {
  26. if (data.status == '1') {
  27. data.data.forEach((item) => {
  28. const colort = randomColor({ type: "hex" }) as string;
  29. const colorb = randomColor({ type: "hex" }) as string;
  30. nameList.push(item.name)
  31. barxList = item.date
  32. item.type = "bar"
  33. item.barWidth = "15%";
  34. item.itemStyle = {
  35. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  36. {
  37. offset: 0,
  38. color: colort
  39. },
  40. {
  41. offset: 1,
  42. color: colorb
  43. }
  44. ])
  45. }
  46. });
  47. setOptions(
  48. {
  49. tooltip: {
  50. trigger: "axis",
  51. axisPointer: {
  52. type: "shadow"
  53. }
  54. },
  55. grid: {
  56. bottom: "20px",
  57. right: "10px"
  58. },
  59. legend: {
  60. //@ts-expect-error
  61. right: true,
  62. data: nameList
  63. },
  64. xAxis: [
  65. {
  66. type: "category",
  67. axisTick: {
  68. alignWithLabel: true
  69. },
  70. axisLabel: {
  71. interval: 0
  72. // width: "70",
  73. // overflow: "truncate"
  74. },
  75. data: barxList,
  76. triggerEvent: true
  77. }
  78. ],
  79. yAxis: [
  80. {
  81. type: "value",
  82. triggerEvent: true
  83. }
  84. ],
  85. series: data.data,
  86. addTooltip: true
  87. },
  88. {
  89. name: "click",
  90. callback: params => {
  91. console.log("click", params);
  92. }
  93. }
  94. );
  95. } else {
  96. console.log(data.message);
  97. };
  98. }).catch(err => {
  99. console.log(err);
  100. })
  101. }
  102. getList();
  103. watch(
  104. () => useAppStoreHook().getSidebarStatus,
  105. () => {
  106. delay(600).then(() => resize());
  107. }
  108. );
  109. </script>
  110. <template>
  111. <div ref="barChartRef" style="width: 100%; height: 35vh" />
  112. </template>