From 2017a3f9b4504655085c62b2b4e272763524eee5 Mon Sep 17 00:00:00 2001
From: cqf <1219224667@qq.com>
Date: 星期一, 16 五月 2022 21:40:42 +0800
Subject: [PATCH] 05162140
---
src/api/sgyhpczl/recheckCancellationNumber.js | 61 ++++++++++++++++++++++++++++++
1 files changed, 61 insertions(+), 0 deletions(-)
diff --git a/src/api/sgyhpczl/recheckCancellationNumber.js b/src/api/sgyhpczl/recheckCancellationNumber.js
index 5a99ec2..f770b54 100644
--- a/src/api/sgyhpczl/recheckCancellationNumber.js
+++ b/src/api/sgyhpczl/recheckCancellationNumber.js
@@ -83,3 +83,64 @@
data
});
}
+
+//保存延期申请
+export function sendDangerNext(data) {
+ return request({
+ headers:{
+ 'token': getTokenAndVerify().token,
+ 'verify':getTokenAndVerify().verify
+ },
+ url: "/taboi/danger/next_step_do",
+ contentType: "application/json",
+ method: 'POST',
+ data,
+ });
+}
+
+//隐患详情
+export function getDangerDetails(id) {
+ return request({
+ headers:{
+ 'token': getTokenAndVerify().token,
+ 'verify':getTokenAndVerify().verify
+ },
+ url: "/taboi/danger/danger_info?id="+id,
+ contentType: "application/json",
+ method: 'GET',
+ });
+}
+
+
+
+//自查隐患详情
+export function self_info(id) {
+ return request({
+ headers:{
+ 'token': getTokenAndVerify().token,
+ 'verify':getTokenAndVerify().verify
+ },
+ url: "/taboi/danger/self_info?id="+id,
+ contentType: "application/json",
+ method: 'GET',
+ });
+}
+
+
+//查询审批记录
+export function getWfRecordList(id) {
+ return request({
+ headers:{
+ 'token': getTokenAndVerify().token,
+ 'verify':getTokenAndVerify().verify
+ },
+ url: "/taboi/user/wf_record_list?id="+id,
+ contentType: "application/json",
+ method: 'GET',
+ });
+}
+
+
+
+// /taboi/file/dowloand_do?type=0&fileName=自查隐患管理表_453929676.xls
+
--
Gitblit v1.9.2