From 2b3eb93b42f379f83569b03e9c4da75edd88f013 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期五, 30 一月 2026 16:29:28 +0800
Subject: [PATCH] fix: 生成货架时,输入100行,100列,页面生成会卡死(建议货架生成时输入数量限制小一些,以及不能输入负数、小数这些,只能正整数)

---
 src/views/productionManagement/processRoute/index.vue |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/src/views/productionManagement/processRoute/index.vue b/src/views/productionManagement/processRoute/index.vue
index 7d5ab5d..41103f9 100644
--- a/src/views/productionManagement/processRoute/index.vue
+++ b/src/views/productionManagement/processRoute/index.vue
@@ -80,6 +80,10 @@
     prop: "model",
   },
   {
+    label: "BOM缂栧彿",
+    prop: "bomNo",
+  },
+  {
     label: "鎻忚堪",
     prop: "description",
   },
@@ -166,7 +170,13 @@
   router.push({
     path: '/productionManagement/processRouteItem',
     query: {
-      id: row.id
+      id: row.id,
+      processRouteCode: row.processRouteCode || '',
+      productName: row.productName || '',
+      model: row.model || '',
+      bomNo: row.bomNo || '',
+      description: row.description || '',
+      type: 'route',
     }
   })
 };

--
Gitblit v1.9.3