diff --git a/src/request/hidden_danger_government.js b/src/request/hidden_danger_government.js index 2af0331..85f0450 100644 --- a/src/request/hidden_danger_government.js +++ b/src/request/hidden_danger_government.js @@ -1,6 +1,8 @@ import { post, upload } from "@/request/axios.js"; export const getHiddenDangerList = (params) => post("/hidden/list", params); // 隐患列表 +export const getHiddenDangerListAll = (params) => + post("/hidden/hiddenListAll", params); // 隐患列表 export const getHiddenDangerRectificationWhy = (params) => post("/app/corpinfo/goqyzzh", params); // 隐患整改不知道在获取什么 export const setHiddenDangerRectificationNormalSubmit = (params) => @@ -8,10 +10,18 @@ export const setHiddenDangerRectificationNormalSubmit = (params) => export const setHiddenDangerRectificationAbnormalSubmit = (params) => post("/hidden/editRec", params); // 隐患整改不正常整改提交 export const setHiddenDangerAcceptSubmit = (params) => - post("/hidden/check", params); // 隐患验证提交 + post("/hidden/check", params); // 隐患验收提交 export const setHiddenDangerCancelMajorHazards = (params) => post("/hidden/editHIDDENLEVEL", params); // 重大隐患管理取消重大隐患 export const setHiddenDangerConfirmMajorHazards = (params) => post("/hidden/editISCONFIRM", params); // 重大隐患管理确认重大隐患 export const getHiddenDangerPrintList = (params) => post("/hidden/listAllToPrint", params); // 隐患打印列表 +export const setCustomHiddenDangerRectificationNormalSubmit = (params) => + upload("/customHidden/rectify", params); // 隐患整改正常整改提交 *隐患排查 +export const setCustomHiddenDangerRectificationAbnormalSubmit = (params) => + post("/customHidden/editRec", params); // 隐患整改不正常整改提交*隐患排查 +export const setCustomHiddenDangerAcceptSubmit = (params) => + post("/customHidden/check", params); // 隐患验证提交*隐患排查 +export const setCustomHiddenDangerConfirmMajorHazards = (params) => + post("/customHidden/editISCONFIRM", params); // 重大隐患管理确认重大隐患*隐患排查 diff --git a/src/request/troubleshooting_statistics.js b/src/request/troubleshooting_statistics.js index 54852ec..7ccb54e 100644 --- a/src/request/troubleshooting_statistics.js +++ b/src/request/troubleshooting_statistics.js @@ -1,10 +1,17 @@ import { post } from "@/request/axios.js"; export const getChecklistInspectionRecordList = (params) => - post("/listmanager/recordList", params); // 清单检查记录列表 + post("/listmanager/recordListAll", params); // 清单检查记录列表 export const getChecklistInspectionRecordDayInspectionList = (params) => - post("/listmanager/statisticsListCheckDay", params); // 清单检查记录日检列表 + post("/listmanager/statisticsListCheckDay", params); // 清单检查记录日检列表-风险管控清单 +export const getCustomChecklistInspectionRecordDayInspectionList = (params) => + post("/hiddenstandardCustom/statisticsListCheckDay", params); // 清单检查记录日检列表-隐患排查清单 export const getChecklistInspectionRecordWeekInspectionList = (params) => - post("/listmanager/statisticsListCheckWeek", params); // 清单检查记录周检列表 + post("/listmanager/statisticsListCheckWeek", params); // 清单检查记录周检列表-风险管控清单 +export const getCustomChecklistInspectionRecordWeekInspectionList = (params) => + post("/hiddenstandardCustom/statisticsListCheckWeek", params); // 清单检查记录周检列表-隐患排查清单 export const getChecklistInspectionRecordTenDayInspectionList = (params) => - post("/listmanager/statisticsListCheckTenday", params); // 清单检查记录旬检列表 + post("/listmanager/statisticsListCheckTenday", params); // 清单检查记录旬检列表-风险管控清单 +export const getCustomChecklistInspectionRecordTenDayInspectionList = ( + params +) => post("/hiddenstandardCustom/statisticsListCheckTenday", params); // 清单检查记录旬检列表-风险管控清单 diff --git a/src/views/hidden_danger_government/acceptance/acceptance.vue b/src/views/hidden_danger_government/acceptance/acceptance.vue index dbc32f4..87d45da 100644 --- a/src/views/hidden_danger_government/acceptance/acceptance.vue +++ b/src/views/hidden_danger_government/acceptance/acceptance.vue @@ -1,6 +1,6 @@