WXL
2024-11-27 a520895c5b01934a7210917d52cbe98455cba33b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<template>
  <div :id="id" :class="className" :style="{ height: height, width: width }" />
</template>
 
<script>
import tdTheme from "./theme.json"; // 引入默认主题
import resize from "@/views/dashboard/mixins/resize";
import "../map/zhejiang.js";
 
export default {
  name: "echart",
  mixins: [resize],
  props: {
    className: {
      type: String,
      default: "chart",
    },
    id: {
      type: String,
      default: "chart",
    },
    width: {
      type: String,
      default: "100%",
    },
    height: {
      type: String,
      default: "350px",
    },
    options: {
      type: Object,
      default: () => ({}),
    },
  },
  data() {
    return {
      chart: null,
    };
  },
  watch: {
    options: {
      handler(options) {
        // 设置true清空echart缓存
        this.chart.setOption(options, true);
      },
      deep: true,
    },
  },
  mounted() {
    this.$echarts.registerTheme("tdTheme", tdTheme); // 覆盖默认主题
    this.initChart();
  },
  methods: {
    initChart() {
      // 初始化echart
      this.chart = this.$echarts.init(this.$el, "tdTheme");
      this.chart.setOption(this.options, true);
      let _this = this;
      this.chart.on("click", function (param) {
        //console.log(param)
        _this.$emit("click", {
          name: param.name,
          value: param.value,
          data: param.data,
        });
      });
    },
  },
};
</script>
 
<style></style>