广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-04 63b4909ac5d0b7355be211cc7080673b41cdb3cc
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<script setup lang="ts">
import { ref, watch } from 'vue';
import { useEcharts } from '@/hooks/common/echarts';
 
defineOptions({
  name: 'RollerDataLineChart'
});
 
interface Props {
  data: Api.Qa.RollerData[];
}
 
const props = defineProps<Props>();
 
const sortedData = ref<Api.Qa.RollerData[]>([]);
 
const { domRef, updateOptions } = useEcharts(() => ({
  tooltip: {
    trigger: 'axis',
    axisPointer: {
      type: 'cross',
      label: {
        backgroundColor: '#6a7985'
      }
    },
    formatter: (params: any) => {
      const lines = Array.isArray(params)
        ? params.map((p: any) => {
            const val = Number(p.value);
            const v = Number.isFinite(val) ? val.toFixed(1) : '-';
            let unit = '';
            if (p.seriesName.includes('万支/箱')) {
              unit = '万支/箱';
            } else if (p.seriesName.includes('箱')) {
              unit = '箱';
            } else {
              unit = '万支';
            }
            return `${p.marker}${p.seriesName}: ${v}${unit}`;
          })
        : [];
      const name = Array.isArray(params) && params.length ? params[0].name : '';
 
      let shiftLine = '';
      if (Array.isArray(params) && params.length > 0) {
        const dataIndex = params[0].dataIndex;
        if (sortedData.value[dataIndex]) {
          const shift = sortedData.value[dataIndex].shift;
          const shiftMap: Record<number, string> = { 1: '早', 2: '中', 3: '晚' };
          const shiftText = shiftMap[shift] || shift;
          shiftLine = `班次: ${shiftText}`;
        }
      }
 
      return [name, shiftLine, ...lines].filter(Boolean).join('<br/>');
    }
  },
  legend: {
    data: ['卷接机产量(箱)', '提升机产量(箱)', '包装机产量(箱)', '滤棒消耗(万支)', '滤棒单耗(万支/箱)'],
    selected: {
      '滤棒消耗(万支)': false,
      '滤棒单耗(万支/箱)': false
    },
    top: '0'
  },
  grid: {
    left: '3%',
    right: '4%',
    bottom: '3%',
    top: '15%',
    containLabel: true
  },
  xAxis: {
    type: 'category',
    boundaryGap: false,
    data: [] as string[]
  },
  yAxis: [
    {
      type: 'value',
      name: '箱、万支/箱',
      min: 0,
      max: (value: { max: number }) => {
        return Math.ceil(value.max * 1.1);
      },
      axisLabel: {
        formatter: (val: number) => Number(val).toFixed(1)
      }
    },
    {
      type: 'value',
      name: '万支',
      min: 0,
      max: (value: { max: number }) => {
        return Math.ceil(value.max * 2.5);
      },
      splitLine: {
        show: false
      },
      axisLabel: {
        formatter: (val: number) => Number(val).toFixed(1)
      }
    }
  ],
  series: [
    {
      color: '#8e9dff',
      name: '卷接机产量(箱)',
      type: 'line',
      smooth: true,
      yAxisIndex: 0,
      areaStyle: {
        color: {
          type: 'linear',
          x: 0,
          y: 0,
          x2: 0,
          y2: 1,
          colorStops: [
            {
              offset: 0.25,
              color: '#8e9dff'
            },
            {
              offset: 1,
              color: '#fff'
            }
          ]
        }
      },
      emphasis: {
        focus: 'series'
      },
      data: [] as number[]
    },
    {
      color: '#26deca',
      name: '提升机产量(箱)',
      type: 'line',
      smooth: true,
      yAxisIndex: 0,
      areaStyle: {
        color: {
          type: 'linear',
          x: 0,
          y: 0,
          x2: 0,
          y2: 1,
          colorStops: [
            {
              offset: 0.25,
              color: '#26deca'
            },
            {
              offset: 1,
              color: '#fff'
            }
          ]
        }
      },
      emphasis: {
        focus: 'series'
      },
      data: [] as number[]
    },
    {
      color: '#65e026',
      name: '包装机产量(箱)',
      type: 'line',
      smooth: true,
      yAxisIndex: 0,
      areaStyle: {
        color: {
          type: 'linear',
          x: 0,
          y: 0,
          x2: 0,
          y2: 1,
          colorStops: [
            {
              offset: 0.25,
              color: '#65e026'
            },
            {
              offset: 1,
              color: '#fff'
            }
          ]
        }
      },
      emphasis: {
        focus: 'series'
      },
      data: [] as number[]
    },
    {
      color: '#ff9d8e',
      name: '滤棒消耗(万支)',
      type: 'line',
      smooth: true,
      yAxisIndex: 1,
      areaStyle: {
        color: {
          type: 'linear',
          x: 0,
          y: 0,
          x2: 0,
          y2: 1,
          colorStops: [
            {
              offset: 0.25,
              color: '#ff9d8e'
            },
            {
              offset: 1,
              color: '#fff'
            }
          ]
        }
      },
      emphasis: {
        focus: 'series'
      },
      data: [] as number[]
    },
    {
      color: '#ffa600',
      name: '滤棒单耗(万支/箱)',
      type: 'line',
      smooth: true,
      yAxisIndex: 0,
      areaStyle: {
        color: {
          type: 'linear',
          x: 0,
          y: 0,
          x2: 0,
          y2: 1,
          colorStops: [
            {
              offset: 0.25,
              color: '#ffa600'
            },
            {
              offset: 1,
              color: '#fff'
            }
          ]
        }
      },
      emphasis: {
        focus: 'series'
      },
      data: [] as number[]
    }
  ]
}));
 
watch(
  () => props.data,
  newData => {
    if (!newData) return;
 
    // Process data
    // Assuming 'time' is the x-axis and 'qty' is the y-axis
    // Sort by time just in case
    sortedData.value = [...newData].sort((a, b) => new Date(a.time).getTime() - new Date(b.time).getTime());
 
    const times = sortedData.value.map(item => item.time);
    const qtys = sortedData.value.map(item => {
      const v = Number(item.qty ?? 0) / 50;
      return Math.round(v * 10) / 10;
    });
    const tsQtys = sortedData.value.map(item => {
      const v = Number(item.tsQty ?? 0) / 250;
      return Math.round(v * 10) / 10;
    });
    const packerQtys = sortedData.value.map(item => {
      // Assuming packerQty is in same unit as tsQty or similar
      const v = Number(item.packerQty ?? 0) / 10 / 250;
      return Math.round(v * 10) / 10;
    });
    const lvbangVals = sortedData.value.map(item => {
      const v = Number(item.lvbangVal ?? 0) / 10000;
      return Math.round(v * 10) / 10;
    });
    const danhaoVals = sortedData.value.map(item => {
      const qtyBox = Number(item.qty ?? 0) / 50;
      if (!qtyBox) return 0;
      const v = Number(item.lvbangVal ?? 0) / 10000 / qtyBox;
      return Math.round(v * 10) / 10;
    });
 
    updateOptions(opts => {
      opts.xAxis.data = times;
      opts.series[0].data = qtys;
      opts.series[1].data = tsQtys;
      opts.series[2].data = packerQtys;
      opts.series[3].data = lvbangVals;
      opts.series[4].data = danhaoVals;
      return opts;
    });
  },
  { deep: true, immediate: true }
);
</script>
 
<template>
  <div ref="domRef" class="h-full w-full overflow-hidden"></div>
</template>
 
<style scoped></style>