From 0e5a00bf8804b600415f53e71b80d12b250958be Mon Sep 17 00:00:00 2001
From: 祖安之光 <11848914+light-of-zuan@user.noreply.gitee.com>
Date: Fri, 10 Apr 2026 11:13:49 +0800
Subject: [PATCH] 添加暂存和图片
---
src/api/saftyCheck/index.js | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/src/api/saftyCheck/index.js b/src/api/saftyCheck/index.js
index e0e77e1..db1cb21 100644
--- a/src/api/saftyCheck/index.js
+++ b/src/api/saftyCheck/index.js
@@ -16,6 +16,14 @@
})
}
+export function saveTemDailySafetyInspect(data) {
+ return request({
+ url: '/system/dailySafetyInspection/scratchpadDailySafetyInspection',
+ method: 'post',
+ data: data
+ })
+}
+
export function delDailySafetyInspect(params) {
return request({
url: '/system/dailySafetyInspection/deleteDailySafetyInspection',
@@ -23,3 +31,19 @@
params: params
})
}
+
+export function getDeptCheckData(params) {
+ return request({
+ url: '/system/dept/getDeptCheckData',
+ method: 'get',
+ params: params
+ })
+}
+
+export function getCheckCount(params) {
+ return request({
+ url: '/system/dailySafetyInspection/getCheckCount',
+ method: 'get',
+ params: params
+ })
+}
--
Gitblit v1.9.2