From 9bf3e98f0277336bfd3ea0400a2dfb57e6786437 Mon Sep 17 00:00:00 2001 From: "han\\hanst" Date: Wed, 26 Nov 2025 17:13:18 +0800 Subject: [PATCH] =?UTF-8?q?BOM=E5=A4=8D=E5=88=B6=E5=90=8E=EF=BC=8C?= =?UTF-8?q?=E4=B8=B4=E6=97=B6=E8=A1=A8tree=E7=BB=93=E6=9E=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/part/bom_create.vue | 62 +++++++++++++++++++++------ 1 file changed, 49 insertions(+), 13 deletions(-) diff --git a/src/views/modules/part/bom_create.vue b/src/views/modules/part/bom_create.vue index e093898..3e69ea7 100644 --- a/src/views/modules/part/bom_create.vue +++ b/src/views/modules/part/bom_create.vue @@ -549,11 +549,12 @@
+ - + + {{scope.row[item.columnProp]}} + + + + + + + + + + + + + + - - - item.columnProp === 'printUnitName'); + return splitIndex >= 0 ? filtered.slice(0, splitIndex + 1) : filtered; + }, + // 批量编辑表格列 - 第二部分(从实际生产数量开始) + filteredBatchUpdateComponentsColumnPart2() { + const filtered = this.filteredBatchUpdateComponentsColumn; + const splitIndex = filtered.findIndex(item => item.columnProp === 'printUnitName'); + return splitIndex >= 0 ? filtered.slice(splitIndex + 1) : []; } }, data() {