From c1e2cf24e4fb89c3ff09841b7c3762e807a4076a Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 26 八月 2026 16:27:25 +0800
Subject: [PATCH] fix: MOM 1.生产订单展示优化 2.生产订单页面归档按钮点击没有反应问题

---
 src/api/mes/pro/route/process/index.ts |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/src/api/mes/pro/route/process/index.ts b/src/api/mes/pro/route/process/index.ts
index d594e4e..a08056f 100644
--- a/src/api/mes/pro/route/process/index.ts
+++ b/src/api/mes/pro/route/process/index.ts
@@ -1,11 +1,21 @@
 import { requestClient } from '#/api/request';
 
 export namespace MesProRouteProcessApi {
+  /** 宸ュ簭鎶曟枡BOM鏄庣粏 */
+  export interface ProcessBomItem {
+    itemId?: number;
+    itemCode?: string;
+    itemName?: string;
+    quantity?: number;
+    remark?: string;
+  }
+
   /** MES 宸ヨ壓璺嚎宸ュ簭 */
   export interface RouteProcess {
     id?: number;
     routeId?: number;
     processId?: number;
+    paramTemplateId?: number;
     processCode?: string;
     processName?: string;
     sort?: number;
@@ -21,7 +31,10 @@
     outputItemId?: number;
     outputItemCode?: string;
     outputItemName?: string;
+    outputItemIds?: number[];
+    outputItemNames?: string;
     remark?: string;
+    bomItems?: ProcessBomItem[];
     createTime?: Date;
   }
 }

--
Gitblit v1.9.3