From 69f49d436a13c35860ba1b738b1a74845db55d15 Mon Sep 17 00:00:00 2001 From: shaoleiliu-netizen123 <480188199@qq.com> Date: Fri, 21 Aug 2026 09:20:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/qualityTesting.ts | 3 + .../components/ReportDetail.vue | 20 ++++++ src/views/biz/qualityTesting/index.vue | 66 +++++++++++++++++-- .../componets/AssingWorkTreeTable.vue | 9 ++- 4 files changed, 90 insertions(+), 8 deletions(-) diff --git a/src/api/qualityTesting.ts b/src/api/qualityTesting.ts index cd7f07d..1ccf030 100644 --- a/src/api/qualityTesting.ts +++ b/src/api/qualityTesting.ts @@ -24,6 +24,9 @@ export interface QualityTesting { status?: number + inspectQty?:number + + inspectorId?: number inspectTime?: string diff --git a/src/views/biz/orderProcessPlan/components/ReportDetail.vue b/src/views/biz/orderProcessPlan/components/ReportDetail.vue index ea77693..f23e6ae 100644 --- a/src/views/biz/orderProcessPlan/components/ReportDetail.vue +++ b/src/views/biz/orderProcessPlan/components/ReportDetail.vue @@ -35,6 +35,26 @@ const columns = [ key: 'quantity', width: 120 }, + { + title: '完成数量', + key: 'qualifiedQty', + width: 120 + }, + { + title: '报废数量', + key: 'scrapQty', + width: 120 + }, + { + title: '返工数量', + key: 'reworkQty', + width: 120 + }, + { + title: '让步接收数量', + key: 'connectionQty', + width: 120 + }, { title: '提交人', key: 'userName', diff --git a/src/views/biz/qualityTesting/index.vue b/src/views/biz/qualityTesting/index.vue index 754f95c..01b768a 100644 --- a/src/views/biz/qualityTesting/index.vue +++ b/src/views/biz/qualityTesting/index.vue @@ -245,6 +245,29 @@ + + + + + {{ qualityTestingInfo.materialCode || '-' }} + {{ qualityTestingInfo.materialName || '-' }} + {{ qualityTestingInfo.workOrderCode || '-' }} + {{ qualityTestingInfo.processName || '-' }} + {{ qualityTestingInfo.assingCode || '-' }} + {{ qualityTestingInfo.totalQty ?? '-' }} + {{ qualityTestingInfo.inspectQty ?? '-' }} + {{ handlerPatchStatus(qualityTestingInfo.status) ?? '-' }} + + + + + + + @@ -252,8 +275,8 @@