bar.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <script setup lang="ts">
  2. import { useDark, useECharts } from "@pureadmin/utils";
  3. import { type PropType, ref, computed, watch, nextTick } from "vue";
  4. const props = defineProps({
  5. requireData: {
  6. type: Array as PropType<Array<number>>,
  7. default: () => []
  8. },
  9. questionData: {
  10. type: Array as PropType<Array<number>>,
  11. default: () => []
  12. }
  13. });
  14. const { isDark } = useDark();
  15. const theme = computed(() => (isDark.value ? "dark" : "light"));
  16. const chartRef = ref();
  17. const { setOptions, resize } = useECharts(chartRef, {
  18. theme
  19. });
  20. watch(
  21. () => props,
  22. async () => {
  23. await nextTick(); // 确保DOM更新完成后再执行
  24. setOptions({
  25. resize: false,
  26. color: ["#41b6ff", "#e85f33"],
  27. tooltip: {
  28. trigger: "axis",
  29. axisPointer: {
  30. type: "none"
  31. }
  32. },
  33. grid: {
  34. top: "20px",
  35. left: "50px",
  36. right: 0
  37. },
  38. legend: {
  39. data: ["需求人数", "提问数量"],
  40. textStyle: {
  41. color: "#606266",
  42. fontSize: "0.875rem"
  43. },
  44. bottom: 0
  45. },
  46. xAxis: [
  47. {
  48. type: "category",
  49. data: ["周一", "周二", "周三", "周四", "周五", "周六", "周日"],
  50. axisLabel: {
  51. fontSize: "0.875rem"
  52. },
  53. axisPointer: {
  54. type: "shadow"
  55. }
  56. }
  57. ],
  58. yAxis: [
  59. {
  60. type: "value",
  61. axisLabel: {
  62. fontSize: "0.875rem"
  63. },
  64. splitLine: {
  65. show: false // 去网格线
  66. }
  67. // name: "单位: 个"
  68. }
  69. ],
  70. series: [
  71. {
  72. name: "需求人数",
  73. type: "bar",
  74. barWidth: 10,
  75. itemStyle: {
  76. color: "#41b6ff",
  77. borderRadius: [10, 10, 0, 0]
  78. },
  79. data: props.requireData
  80. },
  81. {
  82. name: "提问数量",
  83. type: "bar",
  84. barWidth: 10,
  85. itemStyle: {
  86. color: "#e86033ce",
  87. borderRadius: [10, 10, 0, 0]
  88. },
  89. data: props.questionData
  90. }
  91. ]
  92. });
  93. },
  94. {
  95. deep: true,
  96. immediate: true
  97. }
  98. );
  99. defineExpose({
  100. resize
  101. });
  102. </script>
  103. <template>
  104. <div ref="chartRef" style="width: 100%; height: 365px" />
  105. </template>