From 2291b7406cdc184abfa1b1986baeb55499771343 Mon Sep 17 00:00:00 2001
From: ZN <zhang_12370@163.com>
Date: 星期一, 16 三月 2026 17:07:15 +0800
Subject: [PATCH] fix(设备管理): 修正添加维护接口的URL路径
---
src/api/productionManagement/productionReporting.js | 18 +++++++++++++++++-
1 files changed, 17 insertions(+), 1 deletions(-)
diff --git a/src/api/productionManagement/productionReporting.js b/src/api/productionManagement/productionReporting.js
index fdec712..33faadb 100644
--- a/src/api/productionManagement/productionReporting.js
+++ b/src/api/productionManagement/productionReporting.js
@@ -17,6 +17,14 @@
params: query,
});
}
+// 鏍规嵁ID鑾峰彇宸ュ崟璇︽儏
+export function getProductWorkOrderById(query) {
+ return request({
+ url: "/productWorkOrder/getProductWorkOrderById",
+ method: "get",
+ params: query,
+ });
+}
// 鐢熶骇鎶ュ伐
export function productionReport(query) {
return request({
@@ -32,4 +40,12 @@
method: "post",
data: query,
});
-}
\ No newline at end of file
+}
+// 鏂板浜у搧涓昏〃
+export function addProductMain(data) {
+ return request({
+ url: "/productionProductMain/addProductMain",
+ method: "post",
+ data: data,
+ });
+}
--
Gitblit v1.9.3