From 8757616a02b834cb5a8353e595d8e4e71acfa764 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期一, 16 三月 2026 17:37:36 +0800
Subject: [PATCH] 优化原料检;修改不合格管理类别

---
 src/api/consumablesLogistics/consumablesInRecord.js |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/src/api/consumablesLogistics/consumablesInRecord.js b/src/api/consumablesLogistics/consumablesInRecord.js
new file mode 100644
index 0000000..8b39549
--- /dev/null
+++ b/src/api/consumablesLogistics/consumablesInRecord.js
@@ -0,0 +1,26 @@
+import request from "@/utils/request";
+
+// 鑰楁潗鍏ュ簱绠$悊-鏌ヨ鍏ュ簱璁板綍鍒楄〃
+export const getConsumablesInRecordListPage = (params) => {
+    return request({
+        url: "/consumablesInRecord/listPage",
+        method: "get",
+        params,
+    });
+};
+
+export const updateConsumablesInRecord = (id, data) => {
+    return request({
+        url: "/consumablesInRecord/" + id,
+        method: "put",
+        data: data,
+    });
+};
+
+export const batchDeleteConsumablesInRecords = (ids) => {
+    return request({
+        url: "/consumablesInRecord",
+        method: "delete",
+        data: ids,
+    });
+};

--
Gitblit v1.9.3