From 2129908ed7246f6abb761a788eb681e6a6d872d2 Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期二, 30 六月 2026 14:31:37 +0800
Subject: [PATCH] feat(safe): 完善安全巡检系统功能
---
src/api/safeProduction/lineInspection.js | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/src/api/safeProduction/lineInspection.js b/src/api/safeProduction/lineInspection.js
index 5e0c807..ec68054 100644
--- a/src/api/safeProduction/lineInspection.js
+++ b/src/api/safeProduction/lineInspection.js
@@ -72,6 +72,23 @@
});
}
+// 淇敼宸℃璁板綍
+export function updateInspectionRecord(data) {
+ return request({
+ url: "/safeLineInspectionRecord",
+ method: "put",
+ data,
+ });
+}
+
+// 鍒犻櫎宸℃璁板綍
+export function deleteInspectionRecord(ids) {
+ return request({
+ url: "/safeLineInspectionRecord/" + ids.join(","),
+ method: "delete",
+ });
+}
+
// 鎵归噺鏂板宸℃璁板綍
export function batchAddInspectionRecords(data) {
return request({
--
Gitblit v1.9.3