loulijun2021
2022-08-05 d33eacc1f85ac3a736b33ba4713a19aae466d711
src/utils/myEcharts.js
@@ -350,21 +350,26 @@
}
// 综合看板图
export function bar02() {
  const data = [70, 60, 50, 40, 30]
export function bar02(val) {
  // console.log(val)
  // const data = [70, 60, 50, 40, 30]
  // const titlename = ['外观划伤', '表面油污', '尺寸', '颜色', '大小']
  const data = val.map(i => i.cont)
  const titlename = val.map(i => i.name)
  const titlename = ['外观划伤', '表面油污', '尺寸', '颜色', '大小']
  const valdata = [683, 500, 400, 300, 200]
  const myColor = ['#FF0000', '#FF5511', '#FF8800', '#FFBB00', '#FFFF00']
  const option = {
    backgroundColor: 'transparent',
    title: {
      text: 'Top5不良',
      x: 'center',
      show: false,
      text: '一周内Top5不良:',
      x: '2%',
      y: '4%',
      textStyle: {
        color: '#fff',
        fontSize: '22'
        color: '#d8d7d9',
        fontSize: '18'
        // fontWeight: 'lighter'
      },
      subtextStyle: {
        color: '#90979c',
@@ -397,6 +402,7 @@
          show: false
        },
        axisLabel: {
          // color: '#d8d7d9',
          color: '#fff',
          fontSize: 14,
          formatter: function(value, index) {
@@ -407,6 +413,7 @@
          rich: {
            lg: {
              // backgroundColor: '#339911',
              // color: '#d8d7d9',
              color: '#fff',
              borderRadius: 15,
              // padding: 5,
@@ -497,11 +504,13 @@
    },
    title: {
      text: titleText,
      x: '70%',
      x: '73%',
      y: '2%',
      textStyle: {
        color: '#fff',
        fontSize: '22'
        // color: '#fff',
        color: '#00ffff',
        fontSize: '18',
        fontWeight: 'lighter'
      },
      subtextStyle: {
        color: '#90979c',
@@ -684,3 +693,75 @@
  return option
}
// 采购订单图
export function pie01() {
  const option = {
    backgroundColor: 'transparent',
    title: {
      text: '60.21%',
      x: 'center',
      y: 'center',
      textStyle: {
        fontWeight: 'normal',
        color: '#fff',
        fontSize: 18
      }
    },
    color: ['rgba(176, 212, 251, 1)'],
    legend: {
      show: false,
      itemGap: 12,
      data: ['01', '02']
    },
    series: [
      {
        name: 'Line 1',
        type: 'pie',
        clockWise: true,
        radius: ['50%', '66%'],
        itemStyle: {
          normal: {
            label: {
              show: false
            },
            labelLine: {
              show: false
            }
          }
        },
        hoverAnimation: false,
        data: [
          {
            value: 80,
            name: '01',
            itemStyle: {
              normal: {
                color: { // 完成的圆环的颜色
                  colorStops: [{
                    offset: 0,
                    color: '#24d3ff' // 0% 处的颜色
                  }, {
                    offset: 1,
                    color: '#5580fe' // 100% 处的颜色
                  }]
                },
                label: {
                  show: false
                },
                labelLine: {
                  show: false
                }
              }
            }
          },
          {
            name: '02',
            value: 20
          }
        ]
      }]
  }
  return option
}