From c819024e241b9f7c54cc3786373ad0d2998f2190 Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期五, 05 五月 2023 08:55:46 +0800 Subject: [PATCH] 修改 --- src/api/sgyhpczl/oneFromanother.js | 18 ++++++++++++++++-- 1 files changed, 16 insertions(+), 2 deletions(-) diff --git a/src/api/sgyhpczl/oneFromanother.js b/src/api/sgyhpczl/oneFromanother.js index 615e6d3..7b6b447 100644 --- a/src/api/sgyhpczl/oneFromanother.js +++ b/src/api/sgyhpczl/oneFromanother.js @@ -25,8 +25,8 @@ arr.push({field:"address",value:data.form.address,type:'TXT'}) } /*检查类别*/ - if(data.form.ht_typesub!=null && data.form.ht_typesub!=''){ - arr.push({field:"ht_typesub",value:data.form.ht_typesub,type:'OPT'}) + if(data.form.checktype!=null && data.form.checktype!=''){ + arr.push({field:"checktype",value:data.form.checktype,type:'OPT'}) } /*隐患内容*/ if(data.form.ht_content!=null && data.form.ht_content!=''){ @@ -61,6 +61,20 @@ data }); } +//不存在结果详情 +export function selfCheckNotInfo(params) { + return request({ + headers: { + 'token': getTokenAndVerify().token, + 'verify': getTokenAndVerify().verify + }, + url: '/taboi/danger/self_check_not_info', + // '?id=24871&type=0', + contentType: "multipart/form-data", + method: 'GET', + params:params?params:{} + }); +} //撤销 export function revoke(id) { return request({ -- Gitblit v1.9.2