From b0fb51d8d16b3c6a99e4ba4fcb0dbcb5c71df3da Mon Sep 17 00:00:00 2001
From: yaowanxin <3588231647@qq.com>
Date: 星期三, 14 一月 2026 18:05:40 +0800
Subject: [PATCH] 添加审批通过数据过滤功能,审批通过的采购台账才能进行来票登记

---
 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