From 51cacf8f4d7b0b2cc30a22ea4f660e73e82da458 Mon Sep 17 00:00:00 2001 From: cqf Date: 星期五, 17 六月 2022 09:17:53 +0800 Subject: [PATCH] 换取账号-修改 --- 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