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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
| <template>
| <div>
| <!-- 年度开工率 -->
| <Echart :options="options" id="bottomLeftChart" height="480px"></Echart>
| </div>
| </template>
|
| <script>
| import Echart from '@/common/echart'
| export default {
| data() {
| return {
| options: {},
| };
| },
| components: {
| Echart,
| },
| props: {
| cdata: {
| type: Object,
| default: () => ({})
| },
| },
| watch: {
| cdata: {
| handler(newData) {
| this.options = {
| title: {
| text: "",
| },
| tooltip: {
| trigger: "axis",
| backgroundColor: "rgba(255,255,255,0.1)",
| axisPointer: {
| type: "shadow",
| label: {
| show: true,
| backgroundColor: "#7B7DDC"
| }
| }
| },
| legend: {
| data: ["板材下料口", "封边下料口","砂边下料口","钻孔下料位"],
| textStyle: {
| color: "#B4B4B4"
| },
| top: "0%",
| },
| grid: {
| x: "12%",
| width: "90%",
| y: "8%"
| },
| xAxis: {
| data: newData.category,
| axisLine: {
| lineStyle: {
| color: "#B4B4B4"
| }
| },
| axisTick: {
| show: false
| }
| },
| yAxis: [
| {
| splitLine: { show: false },
| axisLine: {
| lineStyle: {
| color: "#B4B4B4"
| }
| },
|
| axisLabel: {
| formatter: "{value} "
| }
| },
| {
| splitLine: { show: false },
| axisLine: {
| lineStyle: {
| color: "#B4B4B4"
| }
| },
| axisLabel: {
| formatter: "{value} "
| }
| }
| ],
| series: [
| {
| name: "板材下料口",
| type: "bar",
| barWidth: 25,
| itemStyle: {
| normal: {
| barBorderRadius: 5,
| color: new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
| { offset: 0, color: "#956FD4" },
| { offset: 1, color: "#3EACE5" }
| ]),
| label: {
| show: true, // 显示标签
| position: 'top', // 标签位置,可以设置 'top', 'insideTop', 'inside', 'insideBottom' 等
| formatter: '{c}', // 标签内容格式器,{c} 表示数据值
| fontSize: 14, // 标签文字大小,默认为 12
| fontWeight: 'bold', // 标签文字粗细,默认为 'normal'
| color: '#ffffff' // 标签文字颜色,默认为 '#333'
| }
| }
| },
| data: newData.lineData
| },
| {
| name: "封边下料口",
| type: "bar",
| barWidth: 25,
| itemStyle: {
| normal: {
| barBorderRadius: 5,
| color: new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
| { offset: 0, color: "rgba(156,107,211,0.8)" },
| { offset: 0.2, color: "rgba(156,107,211,0.5)" },
| { offset: 1, color: "rgba(156,107,211,0.2)" }
| ]),
| label: {
| show: true, // 显示标签
| position: 'top', // 标签位置,可以设置 'top', 'insideTop', 'inside', 'insideBottom' 等
| formatter: '{c}', // 标签内容格式器,{c} 表示数据值
| fontSize: 14, // 标签文字大小,默认为 12
| fontWeight: 'bold', // 标签文字粗细,默认为 'normal'
| color: '#ffffff' // 标签文字颜色,默认为 '#333'
| }
| }
| },
| z: -12,
| data: newData.lineData2
| },
| {
| name: "砂边下料口",
| type: "bar",
| barWidth: 25,
| itemStyle: {
| normal: {
| barBorderRadius: 5,
| color: new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
| { offset: 0, color: "rgba(255,165,0,0.8)" }, // 橙色
| { offset: 0.2, color: "rgba(255,165,0,0.5)" },
| { offset: 1, color: "rgba(255,165,0,0.2)" }
| ]),
| label: {
| show: true, // 显示标签
| position: 'top', // 标签位置,可以设置 'top', 'insideTop', 'inside', 'insideBottom' 等
| formatter: '{c}', // 标签内容格式器,{c} 表示数据值
| fontSize: 14, // 标签文字大小,默认为 12
| fontWeight: 'bold', // 标签文字粗细,默认为 'normal'
| color: '#ffffff' // 标签文字颜色,默认为 '#333'
| }
| }
| },
| z: -12,
| data: newData.barData
| },
| {
| name: "钻孔下料位",
| type: "bar",
| barWidth: 25,
| itemStyle: {
| normal: {
| barBorderRadius: 5,
| color: new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
| { offset: 0, color: "rgba(255,87,255,0.8)" },
| { offset: 0.2, color: "rgba(255,87,255,0.5)" },
| { offset: 1, color: "rgba(255,87,255,0.2)" }
| ]),
| label: {
| show: true, // 显示标签
| position: 'top', // 标签位置,可以设置 'top', 'insideTop', 'inside', 'insideBottom' 等
| formatter: '{c}', // 标签内容格式器,{c} 表示数据值
| fontSize: 14, // 标签文字大小,默认为 12
| fontWeight: 'bold', // 标签文字粗细,默认为 'normal'
| color: '#ffffff' // 标签文字颜色,默认为 '#333'
| }
| }
| },
| z: -12,
| data: newData.barData2
| }
| ]
| }
| },
| immediate: true,
| deep: true
| },
| },
| }
| </script>
|
|