From 89b4ccc1bf351417bbe0acbc8246a681514bd173 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期五, 27 三月 2026 15:16:24 +0800
Subject: [PATCH] 军泰伟业 1.生产订单添加领料功能 2.将报工台账单的查看投入迁移到生产订单

---
 src/views/productionManagement/productionReporting/index.vue |   22 ++--------------------
 1 files changed, 2 insertions(+), 20 deletions(-)

diff --git a/src/views/productionManagement/productionReporting/index.vue b/src/views/productionManagement/productionReporting/index.vue
index f596301..9de948e 100644
--- a/src/views/productionManagement/productionReporting/index.vue
+++ b/src/views/productionManagement/productionReporting/index.vue
@@ -121,9 +121,6 @@
     </div>
     <form-dia ref="formDia"
               @close="handleQuery"></form-dia>
-    <input-modal v-if="isShowInput"
-                 v-model:visible="isShowInput"
-                 :production-product-main-id="isShowingId" />
   </div>
 </template>
 
@@ -138,7 +135,7 @@
   } from "@/api/productionManagement/productionReporting.js";
   import { productionProductMainListPage } from "@/api/productionManagement/productionProductMain.js";
   import { userListNoPageByTenantId } from "@/api/system/user.js";
-  import InputModal from "@/views/productionManagement/productionReporting/Input.vue";
+
 
   const data = reactive({
     searchForm: {
@@ -196,7 +193,7 @@
     {
       label: "鍒涘缓鏃堕棿",
       prop: "createTime",
-      width: 120,
+      width: 180,
     },
     {
       dataType: "action",
@@ -204,13 +201,6 @@
       align: "center",
       fixed: "right",
       operation: [
-        {
-          name: "鏌ョ湅鎶曞叆",
-          type: "text",
-          clickFun: row => {
-            showInput(row);
-          },
-        },
         {
           name: "鍒犻櫎",
           type: "danger",
@@ -378,14 +368,6 @@
       const rowInfo = type === "add" ? selectedRows.value[0] : row;
       formDia.value?.openDialog(type, rowInfo);
     });
-  };
-
-  // 鎵撳紑鎶曞叆妯℃�佹
-  const isShowInput = ref(false);
-  const isShowingId = ref(0);
-  const showInput = row => {
-    isShowInput.value = true;
-    isShowingId.value = row.id;
   };
 
   // 瀵煎嚭

--
Gitblit v1.9.3