Ver Fonte

fix(storage): 新增过滤排除extField.packingSpecificationLabel属性列,完善表格列筛选逻辑

liujt há 14 horas atrás
pai
commit
99d64ab648
1 ficheiros alterados com 3 adições e 1 exclusões
  1. 3 1
      src/views/bpm/stockManagement/storage.vue

+ 3 - 1
src/views/bpm/stockManagement/storage.vue

@@ -1617,7 +1617,9 @@
             };
           });
           this.newColumns = [...newRes].filter(
-            (item) => item.prop != 'extField.packingSpecification'
+            (item) =>
+              item.prop != 'extField.packingSpecification' &&
+              item.prop != 'extField.packingSpecificationLabel'
           );
         });
       },