Chart.vue 1.35 KB
<template>
  <Echart :options="options" id="centreLeft1Chart" :key="key" height="225px" width="80%"></Echart>
</template>
<script>
import Echart from '@/common/echart'
export default {
  components: {
    Echart,
  },
   data() {
    return {
      key:0
    }
    },
  props: {
    cdata: {
      type: Object,
      default: () => ({})
    },
  },
  watch: {
    cdata: {
      handler (newData) {
        console.log("newData",newData);
        this.options = {
         grid: {
            right:"1%",
            bottom:"4%"
          },
          color: [
            "#37a2da",
            "#32c5e9",
            "#9fe6b8",
            "#ffdb5c",
            "#ff9f7f",
            "#fb7293",
            "#e7bcf3",
            "#8378ea"
          ],
          tooltip: {
            trigger: "item",
            formatter: "{a} <br/>{b} : {c} ({d}%)"
          },
          toolbox: {
            show: true
          },
          calculable: true,
          series: [
            {
              name: "业务量",
              type: "pie",
              radius: [0,100],
              roseType: "area",
              data: newData.seriesData
            }
          ],

        }
         this.key++
      },
      immediate: true,
      deep: true
    }
  }
};
</script>

<style lang="scss" scoped>
#centreLeft1Chart {
  margin-bottom: 10px;
  margin-left: 60px;
}
</style>