From dad957f2d33ba871beeba251e7c51c1e7bb2b1ab Mon Sep 17 00:00:00 2001 From: Your Name <123456> Date: 星期四, 02 六月 2022 10:46:33 +0800 Subject: [PATCH] 'lct; --- 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