From 31b331467c51d0b1c2ec1fbc08adeefc69dc6b0f Mon Sep 17 00:00:00 2001 From: haoliang <821644@qq.com> Date: Wed, 13 May 2026 12:45:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E7=8E=B0=E5=91=98=E5=B7=A5=E4=BA=A7?= =?UTF-8?q?=E9=87=8F=E5=AD=90=E9=A1=B5=E9=9D=A2=20WorkerProduction.vue?= =?UTF-8?q?=EF=BC=9A=E7=AD=9B=E9=80=89=E6=A0=8F=EF=BC=88=E6=97=A5=E6=9C=9F?= =?UTF-8?q?+=E5=91=98=E5=B7=A5=E4=B8=8B=E6=8B=89=EF=BC=89=E3=80=814?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E5=8D=A1=E7=89=87=E3=80=81=E5=8F=8C=E5=9B=BE?= =?UTF-8?q?=E8=A1=A8=EF=BC=88=E6=9F=B1=E7=8A=B6=E5=9B=BE+=E9=A5=BC?= =?UTF-8?q?=E5=9B=BE=EF=BC=89=E3=80=81=E6=98=8E=E7=BB=86=E8=A1=A8=E6=A0=BC?= =?UTF-8?q?=EF=BC=8C=E7=BC=96=E8=AF=91=E9=80=9A=E8=BF=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/production/WorkerProduction.vue | 434 +++++++++++++++++- 1 file changed, 429 insertions(+), 5 deletions(-) diff --git a/frontend/src/views/production/WorkerProduction.vue b/frontend/src/views/production/WorkerProduction.vue index 5e171b9..a3ce699 100644 --- a/frontend/src/views/production/WorkerProduction.vue +++ b/frontend/src/views/production/WorkerProduction.vue @@ -1,16 +1,440 @@ - 员工产量 - 员工维度产量统计页面(待实现) + + + + + + + + + + + + 查询 + 重置 + + + + + + + + + + 总产量 + + ⓘ + + + {{ summary.totalQuantity?.toLocaleString() ?? '-' }} + + + + + + + + 在岗工人数 + + ⓘ + + + {{ summary.activeWorkerCount ?? '-' }} + + + + + + + + 人均产量 + + ⓘ + + + {{ formatNumber(summary.avgPerWorker) }} + + + + + + + + 最高产量员工 + + ⓘ + + + {{ summary.topWorkerName || '-' }} + + + + + + + + + + + 员工产量柱状图 + + + + + + + + 员工产量占比 + + + + + + + + + + + + 员工产量明细 + + + + + + + + + + {{ row.percentage?.toFixed(1) }}% + + + + + + -
员工维度产量统计页面(待实现)