From f9ba34d72a8473afc1ee7ab3548c64193fedb75d Mon Sep 17 00:00:00 2001 From: shaoleiliu-netizen123 <480188199@qq.com> Date: Tue, 11 Aug 2026 11:49:50 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=A9=E6=96=99=E7=BC=96=E7=A0=81=20?= =?UTF-8?q?=E7=89=A9=E6=96=99=E5=90=8D=E7=A7=B0=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/biz/flowingAround/index.vue | 2 ++ src/views/biz/qualityTesting/index.vue | 12 +++++++ .../componets/AssingWorkTreeTable.vue | 31 +++++++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/src/views/biz/flowingAround/index.vue b/src/views/biz/flowingAround/index.vue index 318d919..3bc4dc7 100644 --- a/src/views/biz/flowingAround/index.vue +++ b/src/views/biz/flowingAround/index.vue @@ -181,6 +181,8 @@ const formRules = { // 表格列 const columns: DataTableColumns = [ { type: 'selection' }, + { title: '物料名称', key: 'materialName' }, + { title: '物料编码', key: 'materialCode' }, { title: '当前序ID', key: 'currentlyPrefaceName' }, { title: '下一序ID', key: 'nextPrefaceName' }, { title: '业务来源', key: 'businessName' }, diff --git a/src/views/biz/qualityTesting/index.vue b/src/views/biz/qualityTesting/index.vue index 958fe58..95eee87 100644 --- a/src/views/biz/qualityTesting/index.vue +++ b/src/views/biz/qualityTesting/index.vue @@ -478,6 +478,18 @@ const formRules = { const columns: DataTableColumns = [ { type: 'selection' }, { title: '质检编号', key: 'qcNo',align: 'center' }, + { + title: '物料名称', + key: 'materialName', + align: 'center', + width: 150 + }, + { + title: '物料编码', + key: 'materialCode', + align: 'center', + width: 120 + }, { title: '来源类型', key: 'sourceType',align: 'center', render(row) { const val = row.sourceType diff --git a/src/views/production/componets/AssingWorkTreeTable.vue b/src/views/production/componets/AssingWorkTreeTable.vue index 9a84a36..978a12d 100644 --- a/src/views/production/componets/AssingWorkTreeTable.vue +++ b/src/views/production/componets/AssingWorkTreeTable.vue @@ -185,6 +185,37 @@ const AssingWorkColumns :DataTableColumns = [ key: 'processCode', minWidth: 200 }, + { + align:'center', + title: '是否质检', + key: 'qualityInspection', + minWidth: 200, + render(row) { + var opt = row.qualityInspection + if (opt == 0) { + return h(NTag, { type: 'error', size: 'small' }, { default: () => "否" }) + } + if (opt == 1) { + return h(NTag, { type: 'success', size: 'small' }, { default: () => "是" }) + } + } + }, + { + align:'center', + title: '是否入库', + key: 'storageEntry', + minWidth: 200, + render(row) { + var opt = row.storageEntry + if (opt == 0) { + return h(NTag, { type: 'error', size: 'small' }, { default: () => "否" }) + } + if (opt == 1) { + return h(NTag, { type: 'success', size: 'small' }, { default: () => "是" }) + } + } + }, + { align:'center', title: '派工状态',