From 6bd77b5e8e04e6b4be68d5e7a5d47e0228980e55 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 29 四月 2026 14:32:58 +0800
Subject: [PATCH] 天津阳光彩印 1.绑定工艺路线时成品尺寸不赋值

---
 src/views/productionManagement/productionOrder/index.vue |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/views/productionManagement/productionOrder/index.vue b/src/views/productionManagement/productionOrder/index.vue
index a41143c..4470b7d 100644
--- a/src/views/productionManagement/productionOrder/index.vue
+++ b/src/views/productionManagement/productionOrder/index.vue
@@ -93,6 +93,7 @@
   viewGetByProductWordId,
   exportProductInventory
 } from "@/api/productionManagement/productionOrder.js";
+import { deepClone } from "@/utils/index.js"
 import {listMain as getOrderProcessRouteMain} from "@/api/productionManagement/productProcessRoute.js";
 import PIMTable from "@/components/PIMTable/PIMTable.vue";
 import BindRouteDialog from "./BindRouteDialog.vue";
@@ -103,7 +104,6 @@
 
 const router = useRouter();
 const isShowNewModal = ref(false);
-const MOCK_MODE = true;
 
 const loading = ref(false)
 const dialogVisible = ref(false)
@@ -335,8 +335,7 @@
       rowData.value = res?.data || res
     } else {
       bindDialogType.value = "add"
-      rowData.value = row
-      rowData.value.finishedSize = row.specificationModel
+      rowData.value = deepClone( row)
     }
     bindRouteDialogVisible.value = true;
   } catch (e) {

--
Gitblit v1.9.3