he wei
2025-05-14 c8593971decbd850bcd5b7014d5595e80035a3fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<script>
import ECharts from "echarts";
import BaseChart from "@/components/myCharts/BaseChart";
export default {
  extends: BaseChart,
  props: {
    name: {
      type: String,
      default: "",
    },
    unit: {
      type: String,
      default: ""
    },
  },
  data() {
    return {}
  },
  methods: {
    fullScreen() {
      return false;
    },
 
    setData(data) {
      let option = this.getOption(data);
      this.setOption(option);
    },
 
    getOption(data) {
      let xLabel = data.xLabel;
      let sData = data.sData;
      let sName = this.name;
      let min = 0;
      let max = sData.length == 0 ? 0 : function (data) {
        let max = data.max;
        if (max == -Infinity) {
          max = 1;
        }
        max = Math.max(Math.round((max + max * 0.2) * 100) / 100);
        return max;
      };
 
 
      return {
 
        series: [
          // 柱值
          {
            type: 'bar',
            name: sName,
            type: 'bar',
            data: sData,
            stack: 'zs',
            barMaxWidth: 'auto',
            barWidth: 60,
            z: 2,
            label: {
              show: true,
              position: "top",
              offset: [0, -10],
              fontSize: 20,
              fontWeight: 'bolder',
              color: '#ebf006'
            },
            itemStyle: {
              color: {
                x: 0,
                y: 0,
                x2: 0,
                y2: 1,
                type: 'linear',
                global: false,
                colorStops: [
                  {
                    offset: 0,
                    color: '#017ebb',
                  },
                  {
                    offset: 1,
                    color: '#06fbfe',
                  },
                ],
              },
            },
          },
          // 底块
          {
            data: sData.map((v) => 1),
            tooltip: {
              show: false,
            },
            type: 'pictorialBar',
            barMaxWidth: '20',
            symbol: 'diamond',
            symbolOffset: [0, '50%'],
            symbolSize: [60, 20],
            // zlevel: 1,
            z: 1,
            itemStyle: {
              normal: {
                color: '#06fbfe',
              },
            },
          },
          // 柱顶
          {
            data: sData,
            type: 'pictorialBar',
            barMaxWidth: '20',
            symbolPosition: 'end',
            symbol: 'diamond',
            symbolOffset: [0, '-50%'],
            symbolSize: [60, 20],
            // zlevel: 2,
            z: 3,
            itemStyle: {
              normal: {
                color: '#06fbfe',
              },
            },
          },
        ],
        animation: false,
        tooltip: {},
        grid: {
          top: "28px",
          left: '1%',
          right: '1%',
          bottom: '18px',
          containLabel: true
        },
        xAxis: [{
          data: xLabel,
          offset: 10
        }],
        yAxis: [
          {
            // name: yName,
            type: "value",
            min: min,
            max: max,
            splitLine: {
              show: true,
              lineStyle: {
                type: "dashed",
                color: '#6c939b'
              }
            }
          },
        ],
      }
    }
  },
  mounted() {
    this.setData({
      xLabel: [],
      sData: [],
    });
  }
}
</script>