From b5c1cdac12f24d2584a92121574a9a71e9f145db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Mon, 13 Jul 2026 11:19:05 +0800 Subject: [PATCH] =?UTF-8?q?feat(wms/annealPerformance):=20=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B7=A5=E5=89=8D=E9=92=A2=E5=8D=B7=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=9F=A5=E8=AF=A2=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 重构退火性能报表页面,增加双标签页切换,分别展示退火后和加工前钢卷数据,新增加工前钢卷查询接口调用和对应的查询、统计、表格展示逻辑 --- klp-ui/src/api/wms/annealPerformance.js | 9 + .../views/wms/anneal/performance/report.vue | 228 ++++++++++++------ 2 files changed, 158 insertions(+), 79 deletions(-) diff --git a/klp-ui/src/api/wms/annealPerformance.js b/klp-ui/src/api/wms/annealPerformance.js index bf0b6bf1a..076a7bb67 100644 --- a/klp-ui/src/api/wms/annealPerformance.js +++ b/klp-ui/src/api/wms/annealPerformance.js @@ -8,3 +8,12 @@ export function getAnnealPerformance(query) { params: query }) } + +// 查询退火计划中的加工前钢卷列表 +export function getAnnealRawCoils(query) { + return request({ + url: '/wms/anneal/performance/rawCoils', + method: 'get', + params: query + }) +} diff --git a/klp-ui/src/views/wms/anneal/performance/report.vue b/klp-ui/src/views/wms/anneal/performance/report.vue index 08c43731f..6f17560ea 100644 --- a/klp-ui/src/views/wms/anneal/performance/report.vue +++ b/klp-ui/src/views/wms/anneal/performance/report.vue @@ -1,75 +1,119 @@