From 533d1e4ae9ffeafdd9ff65ddcefd7bd005f7d78c Mon Sep 17 00:00:00 2001
From: ZN <zhang_12370@163.com>
Date: 星期三, 01 四月 2026 15:13:33 +0800
Subject: [PATCH] feat(生产管理): 增强BOM信息展示并调整工序配置
---
src/views/productionManagement/processRoute/index.vue | 17 ++++++++++++++++-
1 files changed, 16 insertions(+), 1 deletions(-)
diff --git a/src/views/productionManagement/processRoute/index.vue b/src/views/productionManagement/processRoute/index.vue
index 7d5ab5d..ead2984 100644
--- a/src/views/productionManagement/processRoute/index.vue
+++ b/src/views/productionManagement/processRoute/index.vue
@@ -80,6 +80,14 @@
prop: "model",
},
{
+ label: "BOM缂栧彿",
+ prop: "bomNo",
+ },
+ {
+ label: "BOM鍚嶇О",
+ prop: "bomName",
+ },
+ {
label: "鎻忚堪",
prop: "description",
},
@@ -166,7 +174,14 @@
router.push({
path: '/productionManagement/processRouteItem',
query: {
- id: row.id
+ id: row.id,
+ processRouteCode: row.processRouteCode || '',
+ productName: row.productName || '',
+ model: row.model || '',
+ bomNo: row.bomNo || '',
+ bomName: row.bomName || '',
+ description: row.description || '',
+ type: 'route',
}
})
};
--
Gitblit v1.9.3