fix:输入物料操作项和输出检测项的区分

This commit is contained in:
shijing 2025-07-21 14:41:09 +08:00
parent f159b63515
commit a112ba552a
1 changed files with 1 additions and 1 deletions

View File

@ -686,7 +686,7 @@ export default {
that.qct_defects_origin = that.qct_defects;
that.qct_testitems = [];
res.qct_testitems.forEach((item2) => {
if(item2.type=='10'){
if(item2.testitem_type!=='20'){
let obj2 = Object.assign({}, item2);
obj2.value = '';
obj2.canEdit = that.processType=='20'?false:true;