From cea76991456675d236ad6e42f572f49b00f17c9a Mon Sep 17 00:00:00 2001
From: chenhj <1263187585@qq.com>
Date: 星期二, 17 三月 2026 16:01:40 +0800
Subject: [PATCH] 车间订单工艺路线工序新增
---
src/views/plan/customerorder/index.vue | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/views/plan/customerorder/index.vue b/src/views/plan/customerorder/index.vue
index 418fe53..86ef8e4 100644
--- a/src/views/plan/customerorder/index.vue
+++ b/src/views/plan/customerorder/index.vue
@@ -2000,7 +2000,6 @@
},
syncPLM() {
- console.log(this.multipleSelection)
if (this.multipleSelection.length > 0) {
this.$confirm('纭鍚屾閫変腑鐨勯攢鍞鍗曞悧?', '鎻愮ず', {
confirmButtonText: '纭畾',
@@ -2008,7 +2007,12 @@
type: 'warning'
})
.then(() => {
- syncPlm(this.multipleSelection.map((item) => item.partNo))
+ syncPlm(
+ this.multipleSelection.map((item) => ({
+ id: item.id, // 浼犻�抜d瀛楁
+ partNo: item.partNo // 浼犻�抪artNo瀛楁
+ }))
+ )
.then((res) => {
if (res.status === 200) {
this.$message.success('鍚屾鎴愬姛')
--
Gitblit v1.9.3