| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 | <template>  <div ref="chart" :style="chartStyle" /></template><script>import echarts from 'echarts'require('echarts/theme/macarons')import { labelFormatter } from './chartUtils'export default {  props: {    data: {      required: true,      default: () => { }    },    schema: {      type: Array,      required: true    },    chartOpt: {      type: Object,      required: false    },    chartStyle: {      require: false,      type: Object,      default: () => {        return {          height: '500px'        }      }    }  },  data() {    return {      chart: null    }  },  watch: {    data: {      deep: true,      handler: function (data) {        this.renderChart(data)      }    },    schema: {      deep: true,      handler: function () {        this.renderChart(this.data)      }    }  },  mounted() {    this.renderChart(this.data)    this.$on('resized', this.handleResize)    window.addEventListener('resize', this.handleResize)  },  beforeDestroy() {    if (this.chart) {      this.chart.dispose()    }    window.removeEventListener('resize', this.handleResize)  },  methods: {    handleResize() {      if (this.chart) {        this.chart.resize()      }    },    renderChart(data) {      console.log('renderChart', data)      console.log('this.schema', this.schema)      if (!this.$refs.chart) return      let legend = []      let xAxisData = []      const seriesObj = {}      if (this.schema.filter(schema => schema.asxAxis).length === 2) {        console.log("进入了多个维度====================")        const dimensions = this.schema.filter(schema => schema.asxAxis)        console.log('dimensions======', dimensions)        const xAxisName = dimensions[0].name        const legendName = dimensions[1].name        console.log('xAxisName======', legendName)        console.log('legendName======', legendName)        var second_name = this.schema.filter(function (i) {          return i.is_second == true;        })        console.log('second_name', second_name)        console.log('data', this.data)        const valueName = this.schema.find(schema => !schema.asxAxis).name        console.log('valueName======', valueName)        xAxisData = this.data.map(item => {          legend.push(item[legendName])          return item[xAxisName]        })        xAxisData = Array.from(new Set(xAxisData))        legend = Array.from(new Set(legend))        console.log('legend======', legend)        console.log('xAxisData======', xAxisData)        legend = legend.map((legendItem, index) => {          const seriesData = xAxisData.map(xAxisValue => {            const item = data.find(dataItem => dataItem[legendName] === legendItem && dataItem[xAxisName] === xAxisValue)            console.log('item==============', item)            if (item) {              return item[valueName]            } else {              return '-'            }          })          legendItem += ''          console.log('legendItem==============', legendItem)          seriesObj[legendItem] = {            name: legendItem,            data: seriesData,            type: 'line'          }          return legendItem        })      } else {        console.log("进入了1个维度====================")        this.schema.forEach((schema, index) => {          legend.push(schema.Comment || schema.name)          // if (!schema.asxAxis) {          //   seriesObj[schema.name] = {          //     name: schema.Comment || schema.name,          //     data: [],          //     type: 'bar'          //   }          // }            if (!schema.asxAxis) {            if (schema.is_second == true) {              seriesObj[schema.name] = {                name: schema.Comment || schema.name,                data: [],                type: 'line'              }            } else {              seriesObj[schema.name] = {                name: schema.Comment || schema.name,                data: [],                type: 'bar'              }            }          }          data.forEach(item => {            if (schema.asxAxis) {              xAxisData.push(item[schema.name])            } else {              seriesObj[schema.name].data.push(item[schema.name])            }          })        })      }      const option = {        legend: {          bottom: 0,          type: 'scroll',          data: legend        },        // color: ['#4097ff'],        toolbox: {          show: true,          top: 0,          itemSize: 12,          feature: {            saveAsImage: {              show: true            },            // magicType: {            //   type: ['line', 'bar']            // },            restore: {              show: true            },            dataZoom: {              show: true            }          }        },        grid: {          // show: true,          top: '10px',          left: '74px',          right: '30px',          bottom: '50px'        },        tooltip: {          trigger: 'axis',          axisPointer: {            type: 'shadow'          }        },        xAxis: {          type: 'category',          axisLabel: {            color: '#95a4bd'          },          axisLine: {            lineStyle: {              color: '#95a4bd'            }          },          splitArea: {            show: true,            interval: 0          },          data: xAxisData        },        yAxis: {          type: 'value',          axisLabel: {            show: true,            color: '#95a4bd',            formatter: labelFormatter          },          axisLine: {            lineStyle: {              color: '#95a4bd'            }          },          splitLine: {            lineStyle: {              type: 'dashed'            }          }        },        series: Object.values(seriesObj)      }      setTimeout(() => {        if (!this.chart) {          this.chart = echarts.init(this.$refs.chart, 'macarons')        }        this.chart.clear()        this.chart.setOption(option)        if (this.chartOpt) {          this.chart.setOption(this.chartOpt)        }      }, 0)    }  }}</script>
 |