From a8809c3d35b66f4becc87ac8ac67503aa83c7359 Mon Sep 17 00:00:00 2001
From: zhangwencui <1064582902@qq.com>
Date: 星期二, 06 一月 2026 18:04:36 +0800
Subject: [PATCH] 1.生产工单做流转单2.生产订单工艺路线做排序删除3.生产工单加报工

---
 src/views/productionManagement/productionReporting/index.vue |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/src/views/productionManagement/productionReporting/index.vue b/src/views/productionManagement/productionReporting/index.vue
index 0200ba1..97a3656 100644
--- a/src/views/productionManagement/productionReporting/index.vue
+++ b/src/views/productionManagement/productionReporting/index.vue
@@ -137,9 +137,11 @@
     <form-dia ref="formDia"
               @close="handleQuery"></form-dia>
     <input-modal v-if="isShowInput"
-                 v-model:visible="isShowInput" />
+                 v-model:visible="isShowInput"
+                 :production-product-main-id="isShowingId" />
     <output-modal v-if="isShowOutput"
-                  v-model:visible="isShowOutput" />
+                  v-model:visible="isShowOutput"
+                  :production-product-main-id="isShowingId" />
   </div>
 </template>
 
@@ -151,7 +153,7 @@
     productionReportUpdate,
     workListPageById,
   } from "@/api/productionManagement/productionReporting.js";
-  import { productionProductMainListPage } from "@/api/productionManagement/production_product_main.js";
+  import { productionProductMainListPage } from "@/api/productionManagement/productionProductMain.js";
   import { userListNoPageByTenantId } from "@/api/system/user.js";
   import InputModal from "@/views/productionManagement/productionReporting/Input.vue";
   import OutputModal from "@/views/productionManagement/productionReporting/Output.vue";
@@ -406,14 +408,17 @@
 
   // 鎵撳紑鎶曞叆妯℃�佹
   const isShowInput = ref(false);
+  const isShowingId = ref(0);
   const showInput = row => {
     isShowInput.value = true;
+    isShowingId.value = row.id;
   };
 
   // 鎵撳紑浜у嚭妯℃�佹
   const isShowOutput = ref(false);
   const showOutput = row => {
     isShowOutput.value = true;
+    isShowingId.value = row.id;
   };
 
   // 瀵煎嚭

--
Gitblit v1.9.3