suerprisePlus
2024-08-21 7d57b0fef0f220dfe7c868ce1113a7ce6eb6c468
src/views/visualization/rightMenu.vue
@@ -25,6 +25,12 @@
import * as echarts from 'echarts';
export default {
  props: {
    rightChartData: {
      type: Object,
      required: true
    },
  },
  data() {
    return {
      title: {
@@ -34,6 +40,19 @@
      }
    }
  },
  watch: {
    rightChartData: {
      deep: true,
      handler(val) {
        if (val) {
          if(val.type=='"right1"'){
          }
        }
      }
    }
  },
  mounted() {
    this.initEchart();
  },