riku
2023-12-21 c24a5a2a99515b365ebc343b04538bb862790de1
src/views/exception/components/DustLineChart.vue
@@ -4,118 +4,102 @@
**父组件
 -->
 <template>
<template>
  <div id="main" class="line-chart-exception"></div>
</template>
       <div  id="main" class="line-chart-exception"></div>
<script>
import * as echarts from 'echarts'
  </template>
  <script>
  import * as echarts from 'echarts';
  export default {
    props: {
      option:{
        type:Object,
        default(){
          return {}
        }
      },
      isOpenDialog:{
        type:Boolean
      },
    },
    data() {
      return {
        chart: null
      };
    },
    mounted() {
       // 获取页面宽度的一半
      this.initChart();
      this.chart.clear
      this.chart.setOption(this.option,true)
      window.addEventListener('resize', this.resizeChart);
    },
    watch: {
      option(){
        // this.chart.clear
        // 不与之前的option进行合并
        this.chart.setOption(this.option,true)
      },
      isOpenDialog(){
        window.addEventListener('resize', this.resizeChart);
      },
    },
    // beforeUnmount() {
    //   if (this.chart) {
    //     this.chart.dispose;
    //   }
    // },
    methods: {
      initChart() {
        // 创建echarts实例
        this.chart = echarts.init(document.getElementById('main'));
        // 定义图表的配置项和数据
        const option = {
          grid: {
            left: '3%',
            right: '4%',
            bottom: '3%',
            containLabel: true
          },
          tooltip: {},
          toolbox: {
            // 工具栏
            feature: {
              // dataZoom: {
              //   // 区域缩放
              //   yAxisIndex: 'none'
              // },
              // 保存为图片
              saveAsImage: {}
            }
          },
          xAxis: {
            type: 'time',
            data: [],
          },
          yAxis: {
            type: 'value',
          },
          series: [
            {
              name: '颗粒物浓度',
              type: 'line',
              data: []
            }
          ]
        };
        // 使用刚指定的配置项和数据显示图表
        this.chart.setOption(option, true);
      },
      // 跟页面响应式变化
      resizeChart() {
        this.$nextTick(() => {
        if (this.chart) {
          this.chart.resize();
        }
      });
export default {
  props: {
    option: {
      type: Object,
      default() {
        return {}
      }
    }
  };
  </script>
  <style scoped>
  .line-chart-exception {
    width: 700px;
    height: 250px;
    margin-bottom: 20px;
    min-width: 500px;
  },
  data() {
    return {
      chart: null
    }
  },
  mounted() {
    // 获取页面宽度的一半
    this.initChart()
    this.chart.clear
    this.chart.setOption(this.option, true)
    window.addEventListener('resize', this.resizeChart)
  },
  watch: {
    option() {
      // this.chart.clear
      // 不与之前的option进行合并
      this.chart.setOption(this.option, true)
    }
  },
  methods: {
    initChart() {
      // 创建echarts实例
      this.chart = echarts.init(document.getElementById('main'))
      // 定义图表的配置项和数据
      const option = {
        grid: {
          left: '3%',
          right: '4%',
          bottom: '3%',
          containLabel: true
        },
        tooltip: {},
        toolbox: {
          // 工具栏
          feature: {
            // dataZoom: {
            //   // 区域缩放
            //   yAxisIndex: 'none'
            // },
            // 保存为图片
            saveAsImage: {}
          }
        },
        xAxis: {
          type: 'time',
          data: []
        },
        yAxis: {
          type: 'value'
        },
        series: [
          {
            name: '颗粒物浓度',
            type: 'line',
            data: []
          }
        ]
      }
      // 使用刚指定的配置项和数据显示图表
      this.chart.setOption(option, true)
    },
    // 跟页面响应式变化
    resizeChart() {
      this.$nextTick(() => {
        if (this.chart) {
          this.chart.resize()
        }
      })
    }
  }
  </style>
}
</script>
<style scoped>
.line-chart-exception {
  width: 600px;
  height: 250px;
  margin-bottom: 20px;
  min-width: 500px;
}
</style>