From abaff8fe2032daaeb20e49f2fc91243a5099c435 Mon Sep 17 00:00:00 2001 From: shijing Date: Mon, 15 Sep 2025 10:27:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E9=80=89=E9=A1=B9=E6=A3=80=E9=AA=8C?= =?UTF-8?q?=E6=8F=90=E4=BA=A4=E6=97=B6=E7=BC=BA=E9=99=B7=E9=A1=B9=E7=9A=84?= =?UTF-8?q?=E8=A7=84=E5=88=99=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wpm_bx/mlogbw_check_table.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/wpm_bx/mlogbw_check_table.vue b/src/views/wpm_bx/mlogbw_check_table.vue index 29e1f601..10d4ff22 100644 --- a/src/views/wpm_bx/mlogbw_check_table.vue +++ b/src/views/wpm_bx/mlogbw_check_table.vue @@ -605,7 +605,7 @@ export default { obj.note = row.note; //qct不为空,有检验表 if(that.qct!==''&&that.qct!==null){ - that.qct_defects_origin.forEach(item => { + that.qct_defects.forEach(item => { if(item.rule_expression!==''&&item.rule_expression!==undefined&&item.rule_expression!==null){ let str = item.rule_expression.replace(/`/g, ''); str = str.replace(/\${(.*?)}/g, 'row.\$1') @@ -716,7 +716,7 @@ export default { defectCountSun(row){ let that = this; let index = that.mlogbwlist.indexOf(row); - that.qct_defects_origin.forEach(item => { + that.qct_defects.forEach(item => { if(item.rule_expression!==''&&item.rule_expression!==undefined&&item.rule_expression!==null){ let str = item.rule_expression.replace(/`/g, ''); str = str.replace(/\${(.*?)}/g, 'row.\$1')