|
|
|
@ -19,6 +19,22 @@ export const queryEnforcementInspectionProgramList = (params, success, error) = |
|
|
|
* @returns |
|
|
|
*/ |
|
|
|
export const queryEnforcementInspectionProgramListNoPermission = (params, success, error) => _get("/app/code/enforcementInspectionProgram/queryListNoPermission", params, success, error); |
|
|
|
/** |
|
|
|
* 执法计划列表 无权限 不分页接口 |
|
|
|
* @param {*} params |
|
|
|
* @param {*} success |
|
|
|
* @param {*} error |
|
|
|
* @returns |
|
|
|
*/ |
|
|
|
export const queryEnforcementInspectionProgramListNoPermissionNoPaging = (params, success, error) => _get("/app/code/enforcementInspectionProgram/queryListNoPermissionNoPaging", params, success, error); |
|
|
|
/** |
|
|
|
* 执法计划列表 按id查询 |
|
|
|
* @param {*} params |
|
|
|
* @param {*} success |
|
|
|
* @param {*} error |
|
|
|
* @returns |
|
|
|
*/ |
|
|
|
export const detail = (id, success, error) => _get("/app/code/enforcementInspectionProgram/detail/"+id, null, success, error); |
|
|
|
/** |
|
|
|
* 添加年度执法计划 |
|
|
|
* @param {*} params |
|
|
|
@ -27,10 +43,19 @@ export const queryEnforcementInspectionProgramListNoPermission = (params, succes |
|
|
|
* @returns |
|
|
|
*/ |
|
|
|
export const addEnforcementInspectionProgram = (params, success, error) =>_post("/app/code/enforcementInspectionProgram/add", params, success, error) |
|
|
|
/** |
|
|
|
* 修改年度执法计划 |
|
|
|
* @param {*} params |
|
|
|
* @param {*} success |
|
|
|
* @param {*} error |
|
|
|
* @returns |
|
|
|
*/ |
|
|
|
export const editEnforcementInspectionProgram = (params, success, error) =>_post("/app/code/enforcementInspectionProgram/edit", params, success, error) |
|
|
|
|
|
|
|
//保存执法信息登记
|
|
|
|
export const addEnforcementRegistration = (params, success, error) => _post("/app/code/registration/add",params,success,error) |
|
|
|
export const editEnforcementRegistration = (params, success, error) => _post("/app/code/registration/edit",params,success,error) |
|
|
|
export const editEnforcementRegistration2 = (params, success, error) => _post("/app/code/registration/edit2",params,success,error) |
|
|
|
export const getRegByUserIdAndZero = (userId, success, error) => _get("/app/code/registration/getByUserIdAndZero/"+ userId,null,success,error) |
|
|
|
export const getByUserIdAndEnterpriseNumber = (modth, userId, enterpriseNumber, success, error) => _get("/app/code/registration/getByUserIdAndEnterpriseNumber/"+ modth +"/"+ userId +"/"+ enterpriseNumber,null,success,error) |
|
|
|
export const getByIdToDataFillIn = (id, success, error) => _get("/app/code/registration/getByIdToDataFillIn/" + id,null,success,error) |
|
|
|
@ -42,6 +67,15 @@ export const queryRegistrationList = (params, success, error) => _get("/app/code |
|
|
|
// export const queryEarlyWarning = (params, success, error) => _get("/code/registration/queryEarlyWarning",params,success,error)
|
|
|
|
export const queryEarlyWarning = (params, success, error) => _get("/app/code/LawEnforcementWarningList/queryList",params,success,error) |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询当前企业本月预警信息列表 |
|
|
|
* @param {*} params |
|
|
|
* @param {*} success |
|
|
|
* @param {*} error |
|
|
|
* @returns |
|
|
|
*/ |
|
|
|
export const queryListByEnterpriseNumber = (params, success, error) => _get("/app/code/LawEnforcementWarningList/queryListByEnterpriseNumber",params,success,error) |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询用户信息 |
|
|
|
* @param {*} params |
|
|
|
@ -59,6 +93,7 @@ export const queryUserInfo = (userId, success, error) => _get("/app/getUserInfo/ |
|
|
|
* @returns |
|
|
|
*/ |
|
|
|
export const queryEnforcementRegistrationById = (id, success, error) =>_get("/app/code/registration/queryById/" + id,null,success,error) |
|
|
|
export const queryEnforcementRegistrationUniteById = (id, success, error) =>_get("/app/code/registration/queryUniteById/" + id,null,success,error) |
|
|
|
|
|
|
|
|
|
|
|
//查询附件
|
|
|
|
@ -86,4 +121,6 @@ export const addQrCode = (num, success, error) => _get("/app/enterpriseInformati |
|
|
|
* @param {*} error |
|
|
|
* @returns |
|
|
|
*/ |
|
|
|
export const getEnterpriseInfoBySj = (params,success,error) => _get("/app/enterpriseInformation/getEnterpriseInfoBySj",params,success,error) |
|
|
|
export const getEnterpriseInfoBySj = (params,success,error) =>_get("/app/enterpriseInformation/getEnterpriseInfoBySj",params,success,error) |
|
|
|
|
|
|
|
|
|
|
|
|