diff --git a/src/views/wpm_bx/mlogbw_check_table.vue b/src/views/wpm_bx/mlogbw_check_table.vue
index 8769d286..d63ff6f6 100644
--- a/src/views/wpm_bx/mlogbw_check_table.vue
+++ b/src/views/wpm_bx/mlogbw_check_table.vue
@@ -58,7 +58,10 @@
扭转日期 |
工装 |
{{ item.testitem_name }} |
- {{ item.defect_name }} |
+
+ {{ item.defect_name }}
+ {{ getDefectCount(item.defect_name) }}
+ |
备注 |
操作 |
@@ -1358,6 +1361,15 @@ that.$API.wpm.prints.req(printer_ip, obj).then((response) => {
this.$message.error("导入失败,请重新尝试");
});
},
+ getDefectCount(defectName){
+ let count = 0;
+ this.mlogbwlist.forEach(row => {
+ if(row[defectName]){
+ count++;
+ }
+ });
+ return count;
+ },
hasNull(){
let that = this;
let canSubmit = true;