From e24a7c48aaa75f70772141a7d6b576c1b4af9cf6 Mon Sep 17 00:00:00 2001 From: zhangyanli Date: Thu, 1 Feb 2024 15:35:37 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E6=82=A3=E6=8E=92=E6=9F=A5=E6=B8=85?= =?UTF-8?q?=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/js/asyncRouter.js | 18 + src/components/select_create/index.vue | 6 +- src/request/data_dictionary.js | 6 + src/request/hazard_investigation.js | 35 +- .../checklist_inspection_status/index.vue | 18 +- .../components/list.vue | 252 +++++++++ .../delete_inventory_management/index.vue | 264 +-------- .../inventory_management/add.vue | 2 +- .../check_standard_add.vue | 461 +++++++++++++++ .../components/checkstandard_add.vue | 221 ++++++++ .../inventory_management/components/list.vue | 483 ++++++++++++++++ .../components/select_checkstandard.vue | 172 ++++++ .../components/standard_list.vue | 385 +++++++++++++ .../inventory_management/index.vue | 434 +------------- .../inventory_troubleshooting/index.vue | 29 +- .../standard_inspect.vue | 531 ++++++++++++++++++ 16 files changed, 2657 insertions(+), 660 deletions(-) create mode 100644 src/views/hazard_investigation/delete_inventory_management/components/list.vue create mode 100644 src/views/hazard_investigation/inventory_management/check_standard_add.vue create mode 100644 src/views/hazard_investigation/inventory_management/components/checkstandard_add.vue create mode 100644 src/views/hazard_investigation/inventory_management/components/list.vue create mode 100644 src/views/hazard_investigation/inventory_management/components/select_checkstandard.vue create mode 100644 src/views/hazard_investigation/inventory_management/components/standard_list.vue create mode 100644 src/views/hazard_investigation/inventory_troubleshooting/standard_inspect.vue diff --git a/src/assets/js/asyncRouter.js b/src/assets/js/asyncRouter.js index 33cf4e9..8774c3e 100644 --- a/src/assets/js/asyncRouter.js +++ b/src/assets/js/asyncRouter.js @@ -330,6 +330,15 @@ export default [ }, component: "hazard_investigation/inventory_management/add", }, + { + path: "/hazard_investigation/inventory_management/check_standard_add", + meta: { + title: "新增", + activeMenu: "/hazard_investigation/inventory_management", + }, + component: + "hazard_investigation/inventory_management/check_standard_add", + }, { path: "/hazard_investigation/inventory_management/edit", meta: { @@ -384,6 +393,15 @@ export default [ }, component: "hazard_investigation/inventory_troubleshooting/inspect", }, + { + path: "/hazard_investigation/inventory_troubleshooting/standard_inspect", + meta: { + title: "开始检查", + activeMenu: "/hazard_investigation/inventory_troubleshooting", + }, + component: + "hazard_investigation/inventory_troubleshooting/standard_inspect", + }, ], }, { diff --git a/src/components/select_create/index.vue b/src/components/select_create/index.vue index 561ff5c..261d058 100644 --- a/src/components/select_create/index.vue +++ b/src/components/select_create/index.vue @@ -19,7 +19,7 @@ " >
{{ item.NAME }}
-
+
@@ -47,6 +47,10 @@ const props = defineProps({ required: true, default: () => [], }, + isDelete: { + type: Boolean, + default: false, + }, }); const emits = defineEmits(["update:modelValue", "delete-option"]); const modelValue = useVModel(props, "modelValue", emits); diff --git a/src/request/data_dictionary.js b/src/request/data_dictionary.js index 8be8ac9..012a75a 100644 --- a/src/request/data_dictionary.js +++ b/src/request/data_dictionary.js @@ -78,3 +78,9 @@ export const getHiddenDangerType = async () => { } } }; + +// 获取数据字典-检查类别 +export const getStandardLevels = () => + post("/hiddenstandardDictionary/list", { + loading: false, + }); diff --git a/src/request/hazard_investigation.js b/src/request/hazard_investigation.js index 233159d..6810f9a 100644 --- a/src/request/hazard_investigation.js +++ b/src/request/hazard_investigation.js @@ -21,7 +21,7 @@ export const setInventoryManagementInsuranceCoverageList = (params) => export const setInventoryManagementInsuranceCoverageSave = (params) => post("/listmanager/saveBaoBaoType", params); // 清单管理设置包保责任类型提交 export const getInventoryManagementInspectionItems = (params) => - post("/riskcheckitem/itemlistAll", params); // 清单管理检查项列表 + post("/richeckitem/itemlistAllsk", params); // 清单管理检查项列表 export const getInventoryManagementOtherRiskList = (params) => post("/riskcheckitem/list", params); // 清单管理选择其他存在风险列表 export const setInventoryManagementAdd = (params) => @@ -34,6 +34,8 @@ export const setDeleteInventoryManagementRecovery = (params) => post("/stoplistmanager/restore", params); // 删除清单管理恢复 export const getInventoryTroubleshootingList = (params) => post("/listmanager/checkList", params); // 清单排查列表 +export const getRiskStandardList = (params) => + post("/listmanager/riskStandardCheckList", params); // 清单排查列表 export const getInventoryTroubleshootingOtherHiddenList = (params) => post("/hidden/getOtherHidden", params); // 清单排查其它隐患列表 export const getHiddenDangerDatabaseList = (params) => @@ -46,8 +48,10 @@ export const setHiddenDangerListAdd = (params) => post("/hidden/listAdd", params); // 清单排查其它隐患添加 export const setInventoryTroubleshootingSubmit = (params) => post("/checkrecord/add", params); // 清单排查提交 -export const getChecklistInspectionStatusList = (params) => - post("/listmanager/recordList", params); // 清单检查情况列表 +// export const getChecklistInspectionStatusList = (params) => +// post("/listmanager/recordList", params); // 清单检查情况列表 +export const getRiskStandardStatusList = (params) => + post("/listmanager/riskStandardRecordList", params); // 清单检查情况列表 export const getChecklistInspectionStatusRecordList = (params) => post("/checkrecord/list", params); // 清单检查情况检查记录列表 export const setChecklistInspectionStatusRecordDelete = (params) => @@ -66,3 +70,28 @@ export const getInspectionRecordList = (params) => post("/checkrecord/allList", params); // 检查记录管理列表 export const getTroubleshootingPlanList = (params) => post("/listmanager/checkPlan", params); // 排查计划列表 + +export const getCustomList = (params) => + post("/hiddenstandardCustom/list", params); // 隐患排查清单管理列表 +export const setCustomDisable = (params) => + post("/hiddenstandardCustom/delete", params); // 隐患排查清单管理禁用 +export const setCustomEnable = (params) => + post("/hiddenstandardCustom/enable", params); // 清单管理启用 +export const setCustomBatchDeleteTemporary = (params) => + post("/hiddenstandardCustom/deleteAlltemp", params); // 隐患排查清单管理批量删除临时清单 +export const setCustomBatchBatchDelete = (params) => + post("/hiddenstandardCustom/deleteAll", params); // 清单管理批量删除 +export const getCheckstandardCommonList = (params) => + post("/hiddenstandardCommon/list", params); // 隐患排清单管理选择其他检查标准 +export const setCheckStandardManagementAdd = (params) => + post("/hiddenstandardCustom/add", params); // 隐患排查清单管理新增 +export const setCheckStandardManagementEdit = (params) => + post("/listmanager/hiddencheckedit", params); // 隐患排查清单管理修改 +export const getCheckStandardManagementView = (params) => + post("/hiddenstandardCustom/goEdit", params); // 隐患排查清单管理查看 +export const getCheckStandardOtherHiddenList = (params) => + post("/customHidden/getOtherHidden", params); // 隐患排查清单排查其它隐患列表 +export const setCheckStandardSupplementaryRecordingSubmit = (params) => + post("/customCheckrecord/recording", params); // 隐患排查清单检查情况检查记录补录提交 +export const setCheckStandardSubmit = (params) => + post("/customCheckrecord/add", params); // 清单排查提交 diff --git a/src/views/hazard_investigation/checklist_inspection_status/index.vue b/src/views/hazard_investigation/checklist_inspection_status/index.vue index d8ff747..c81705f 100644 --- a/src/views/hazard_investigation/checklist_inspection_status/index.vue +++ b/src/views/hazard_investigation/checklist_inspection_status/index.vue @@ -15,6 +15,14 @@ /> + + + + + + + + @@ -137,6 +145,12 @@ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 搜索 + + 重置 + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + diff --git a/src/views/hazard_investigation/delete_inventory_management/index.vue b/src/views/hazard_investigation/delete_inventory_management/index.vue index 4fce8ca..583f4bc 100644 --- a/src/views/hazard_investigation/delete_inventory_management/index.vue +++ b/src/views/hazard_investigation/delete_inventory_management/index.vue @@ -1,247 +1,37 @@ - + diff --git a/src/views/hazard_investigation/inventory_management/add.vue b/src/views/hazard_investigation/inventory_management/add.vue index ee85a3c..91388c2 100644 --- a/src/views/hazard_investigation/inventory_management/add.vue +++ b/src/views/hazard_investigation/inventory_management/add.vue @@ -1,6 +1,6 @@ + + + + diff --git a/src/views/hazard_investigation/inventory_management/components/checkstandard_add.vue b/src/views/hazard_investigation/inventory_management/components/checkstandard_add.vue new file mode 100644 index 0000000..10096f2 --- /dev/null +++ b/src/views/hazard_investigation/inventory_management/components/checkstandard_add.vue @@ -0,0 +1,221 @@ + + + + + diff --git a/src/views/hazard_investigation/inventory_management/components/list.vue b/src/views/hazard_investigation/inventory_management/components/list.vue new file mode 100644 index 0000000..8e34588 --- /dev/null +++ b/src/views/hazard_investigation/inventory_management/components/list.vue @@ -0,0 +1,483 @@ + + + + + diff --git a/src/views/hazard_investigation/inventory_management/components/select_checkstandard.vue b/src/views/hazard_investigation/inventory_management/components/select_checkstandard.vue new file mode 100644 index 0000000..08ce8d0 --- /dev/null +++ b/src/views/hazard_investigation/inventory_management/components/select_checkstandard.vue @@ -0,0 +1,172 @@ + + + + + diff --git a/src/views/hazard_investigation/inventory_management/components/standard_list.vue b/src/views/hazard_investigation/inventory_management/components/standard_list.vue new file mode 100644 index 0000000..82deb9d --- /dev/null +++ b/src/views/hazard_investigation/inventory_management/components/standard_list.vue @@ -0,0 +1,385 @@ + + + + + diff --git a/src/views/hazard_investigation/inventory_management/index.vue b/src/views/hazard_investigation/inventory_management/index.vue index 2821e72..15e7408 100644 --- a/src/views/hazard_investigation/inventory_management/index.vue +++ b/src/views/hazard_investigation/inventory_management/index.vue @@ -1,423 +1,37 @@ - + diff --git a/src/views/hazard_investigation/inventory_troubleshooting/index.vue b/src/views/hazard_investigation/inventory_troubleshooting/index.vue index d2e4dc7..91e8fc8 100644 --- a/src/views/hazard_investigation/inventory_troubleshooting/index.vue +++ b/src/views/hazard_investigation/inventory_troubleshooting/index.vue @@ -15,6 +15,14 @@ />
+ + + + + + + + + + + 开始检查 @@ -143,14 +157,14 @@ import { layoutFnGetInventoryLevel, layoutFnGetTroubleshootingCycle, } from "@/assets/js/data_dictionary.js"; -import { getInventoryTroubleshootingList } from "@/request/hazard_investigation.js"; +import { getRiskStandardList } from "@/request/hazard_investigation.js"; import { useRouter } from "vue-router"; import { ElMessageBox } from "element-plus"; const router = useRouter(); let ISREST = ""; const { list, pagination, searchForm, fnGetData, fnResetPagination } = - useListData(getInventoryTroubleshootingList, { + useListData(getRiskStandardList, { callbackFn: (list, resData) => { ISREST = resData.ISREST; }, @@ -167,14 +181,17 @@ const fnResetPaginationTransfer = () => { DEPTIDS: searchForm.value.DEPTIDS?.join(","), }); }; -const fnInspect = (LISTMANAGER_ID) => { +const fnInspect = (ID, LIST_TYPE) => { if (ISREST === "1") { ElMessageBox.alert("您处于离岗状态,无需检查清单"); return; } router.push({ - path: "/hazard_investigation/inventory_troubleshooting/inspect", - query: { LISTMANAGER_ID }, + path: + LIST_TYPE === "1" + ? "/hazard_investigation/inventory_troubleshooting/inspect" + : "/hazard_investigation/inventory_troubleshooting/standard_inspect", + query: { ID }, }); }; diff --git a/src/views/hazard_investigation/inventory_troubleshooting/standard_inspect.vue b/src/views/hazard_investigation/inventory_troubleshooting/standard_inspect.vue new file mode 100644 index 0000000..d116bcf --- /dev/null +++ b/src/views/hazard_investigation/inventory_troubleshooting/standard_inspect.vue @@ -0,0 +1,531 @@ + + + + +