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) }}% + + + + + + -
员工维度产量统计页面(待实现)