From 9dfa5e909c85450229c33f3ad4e500a7fe2bc710 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期六, 17 一月 2026 15:48:24 +0800
Subject: [PATCH] fix: 生产核算导出内容实际展示为客户档案数据,生产报工导出内容为空
---
src/views/qualityManagement/processInspection/index.vue | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/views/qualityManagement/processInspection/index.vue b/src/views/qualityManagement/processInspection/index.vue
index 1508cdc..6206552 100644
--- a/src/views/qualityManagement/processInspection/index.vue
+++ b/src/views/qualityManagement/processInspection/index.vue
@@ -207,7 +207,7 @@
submit(row.id);
},
disabled: row => {
- return row.inspectState == 1;
+ return row.inspectState == 1 || !row.checkResult;
},
},
{
--
Gitblit v1.9.3