From 2f3f713465e0a538dfa49fc187b8b8d84b3f0a55 Mon Sep 17 00:00:00 2001
From: buhuazhen <hua100783@gmail.com>
Date: 星期三, 27 五月 2026 17:18:48 +0800
Subject: [PATCH] feat 页面显示巡检状态

---
 src/api/productionManagement/workOrder.js |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/src/api/productionManagement/workOrder.js b/src/api/productionManagement/workOrder.js
index 7e8bd86..84d344f 100644
--- a/src/api/productionManagement/workOrder.js
+++ b/src/api/productionManagement/workOrder.js
@@ -33,3 +33,30 @@
     responseType: "blob",
   });
 }
+
+export function addProductionMachineRecord(data) {
+  return request({
+    url: "/productionMachineRecord/add",
+    method: "post",
+    data
+  });
+}
+
+// /productionMachineRecord/listPage
+export function productionMachineRecordListPage(data) {
+  return request({
+    url: "/productionMachineRecord/listPage",
+    method: "get",
+      params: data
+  });
+}
+
+// 鍒犻櫎鐢熶骇鎺掍骇
+// /productionMachineRecord/delete
+export function deleteProductionMachineRecord(query) {
+  return request({
+    url: "/productionMachineRecord/delete",
+    method: "delete",
+        data: query,
+  });
+}

--
Gitblit v1.9.3