From 33fecfe3cfe368fea8f82bfcea3a4e8e20fee38b Mon Sep 17 00:00:00 2001
From: zhoucong <123456>
Date: Tue, 10 May 2022 10:32:00 +0800
Subject: [PATCH] fix
---
src/api/safetySelfInspection.js | 24 +++++++++++++++++++++++-
1 files changed, 23 insertions(+), 1 deletions(-)
diff --git a/src/api/safetySelfInspection.js b/src/api/safetySelfInspection.js
index 1d19e81..95d743e 100644
--- a/src/api/safetySelfInspection.js
+++ b/src/api/safetySelfInspection.js
@@ -106,4 +106,26 @@
method: 'post',
data
})
-}
\ No newline at end of file
+}
+
+export function safetyInspectionItemId(data) {
+ return request({
+ headers:{
+ 'Authorization': getToken()
+ },
+ url: process.env.BASE_API+'/safetyInspectionItem/info',
+ method: 'post',
+ data
+ })
+}
+
+export function safetySelfInspectionFinish(data) {
+ return request({
+ headers:{
+ 'Authorization': getToken()
+ },
+ url: process.env.BASE_API+'/safetySelfInspection/finish',
+ method: 'post',
+ data
+ })
+}
--
Gitblit v1.9.2