areaChart.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <div ref="chartRef" :style="{ height, width }"></div>
  3. </template>
  4. <script lang="ts">
  5. import { defineComponent, PropType, ref, Ref, onMounted, watch } from 'vue';
  6. import { useECharts } from '/@/hooks/web/useECharts';
  7. export default defineComponent({
  8. props: {
  9. width: {
  10. type: String as PropType<string>,
  11. default: '100%',
  12. },
  13. height: {
  14. type: String as PropType<string>,
  15. default: '350px',
  16. },
  17. dataSource:{
  18. default:{
  19. x:[],
  20. pv:[],
  21. uv:[],
  22. enquiry: []
  23. }
  24. },
  25. },
  26. setup(props) {
  27. const chartRef = ref<HTMLDivElement | null>(null);
  28. const { setOptions, echarts } = useECharts(chartRef as Ref<HTMLDivElement>);
  29. const updateChart = () => {
  30. setOptions({
  31. tooltip: {
  32. trigger: 'axis',
  33. axisPointer: {
  34. type: 'line',
  35. label: {
  36. show: true,
  37. backgroundColor: '#333',
  38. },
  39. },
  40. },
  41. legend: {
  42. data: ['访客数(UV)', '浏览量(PV)', '询盘数(EN)'],
  43. textStyle: {
  44. color: '#ccc',
  45. },
  46. },
  47. xAxis: {
  48. data: props.dataSource.x,
  49. axisLine: {
  50. lineStyle: {
  51. color: '#ccc',
  52. },
  53. },
  54. },
  55. yAxis: {
  56. splitLine: { show: true },
  57. axisLine: {
  58. lineStyle: {
  59. color: '#ccc',
  60. },
  61. },
  62. },
  63. series: [
  64. {
  65. name: '访客数(UV)',
  66. type: 'line',
  67. smooth: false,
  68. symbol: 'circle',
  69. showAllSymbol: 'auto',
  70. symbolSize: 6,
  71. lineStyle: {
  72. color: '#53A2D3',
  73. },
  74. itemStyle: {
  75. color: '#53A2D3',
  76. },
  77. data: props.dataSource.pv,
  78. },
  79. {
  80. name: '浏览量(PV)',
  81. type: 'line',
  82. symbol: 'circle',
  83. symbolSize: 6,
  84. lineStyle: {
  85. color: '#FF951A',
  86. },
  87. itemStyle: {
  88. color: '#FF951A',
  89. },
  90. data: props.dataSource.uv,
  91. },
  92. {
  93. name: '询盘数(EN)',
  94. type: 'line',
  95. symbol: 'circle',
  96. z: -12,
  97. lineStyle: {
  98. color: '#399C5C',
  99. },
  100. itemStyle: {
  101. color: '#399C5C',
  102. },
  103. data: props.dataSource.enquiry,
  104. }
  105. ],
  106. });
  107. };
  108. watch(
  109. () => props.dataSource,
  110. () => {
  111. updateChart();
  112. },
  113. { deep: true }
  114. );
  115. onMounted(() => {
  116. updateChart();
  117. });
  118. return { chartRef };
  119. },
  120. });
  121. </script>