From 70ed2d656562b2c26b4dfdd829324f2837dede21 Mon Sep 17 00:00:00 2001
From: 张诺 <zhang_12370@163.com>
Date: 星期一, 27 四月 2026 16:05:20 +0800
Subject: [PATCH] 阳光印刷Web: 调整重复点击绑定工艺路线 浅拷贝数据问题
---
src/views/productionManagement/productionOrder/index.vue | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/productionManagement/productionOrder/index.vue b/src/views/productionManagement/productionOrder/index.vue
index a41143c..e61a04b 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,7 +335,7 @@
rowData.value = res?.data || res
} else {
bindDialogType.value = "add"
- rowData.value = row
+ rowData.value = deepClone( row)
rowData.value.finishedSize = row.specificationModel
}
bindRouteDialogVisible.value = true;
--
Gitblit v1.9.3