From 2530d035c5dcfbbcf4acbad5180190a2d710bb38 Mon Sep 17 00:00:00 2001 From: zhangyanli Date: Wed, 21 Feb 2024 16:14:40 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E6=82=A3=E6=B2=BB=E7=90=86=E5=92=8C?= =?UTF-8?q?=E6=B8=85=E5=8D=95=E7=BB=9F=E8=AE=A1bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/request/hidden_danger_government.js | 12 ++- src/request/troubleshooting_statistics.js | 15 +++- .../acceptance/acceptance.vue | 24 ++++-- .../acceptance/index.vue | 14 ++- .../hidden_danger_government/ledger/index.vue | 22 +++-- .../hidden_danger_government/major/index.vue | 15 ++-- .../hidden_danger_government/major/view.vue | 22 +++-- .../rectification/index.vue | 11 ++- .../rectification/rectification.vue | 25 ++++-- .../day_inspection/index.vue | 19 +++- .../day_inspection/inspection_records.vue | 83 +++++++++++++----- .../ten_day_inspection/inspection_records.vue | 86 ++++++++++++++----- .../week_inspection/inspection_records.vue | 86 ++++++++++++++----- 13 files changed, 318 insertions(+), 116 deletions(-) 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 @@