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() {