From e24a7c48aaa75f70772141a7d6b576c1b4af9cf6 Mon Sep 17 00:00:00 2001 From: zhangyanli Date: Thu, 1 Feb 2024 15:35:37 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E9=9A=90=E6=82=A3=E6=8E=92=E6=9F=A5?= =?UTF-8?q?=E6=B8=85=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 @@ + + + + + From 5ea9fb929d3feff3a35f1473789d37af10351efd Mon Sep 17 00:00:00 2001 From: zhangyanli Date: Thu, 1 Feb 2024 16:41:45 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E9=9A=90=E6=82=A3=E6=8E=92=E6=9F=A5?= =?UTF-8?q?=E6=89=B9=E9=87=8F=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inventory_management/components/list.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/hazard_investigation/inventory_management/components/list.vue b/src/views/hazard_investigation/inventory_management/components/list.vue index 8e34588..7aad582 100644 --- a/src/views/hazard_investigation/inventory_management/components/list.vue +++ b/src/views/hazard_investigation/inventory_management/components/list.vue @@ -381,7 +381,7 @@ const fnDisable = debounce( 1000, async (ID) => { await ElMessageBox.confirm("确定要禁用吗?", { type: "warning" }); - if (name === "risk") { + if (tabName.name === "risk") { await setInventoryManagementDisable({ ID }); } else { await setCustomDisable({ ID }); @@ -395,7 +395,7 @@ const fnEnable = debounce( 1000, async (ID) => { await ElMessageBox.confirm("确定要启用吗?", { type: "warning" }); - if (name === "risk") { + if (tabName.name === "risk") { await setInventoryManagementEnable({ ID }); } else { await setCustomEnable({ ID }); @@ -417,13 +417,13 @@ const fnBatchDelete = debounce( const DATA_IDS2 = []; selectionData.forEach((item) => { if (item.TYPE === "listType0006") { - if (name === "risk") { + if (tabName.name === "risk") { DATA_IDS1.push(item.LISTMANAGER_ID); } else { DATA_IDS1.push(item.CUSTOM_ID); } } else { - if (name === "risk") { + if (tabName.name === "risk") { DATA_IDS2.push(item.LISTMANAGER_ID); } else { DATA_IDS2.push(item.CUSTOM_ID); @@ -435,7 +435,7 @@ const fnBatchDelete = debounce( "临时清单会彻底被删除不可恢复,确定要删除吗?", { type: "warning" } ); - if (name === "risk") { + if (tabName.name === "risk") { await setInventoryManagementBatchDeleteTemporary({ DATA_IDS: DATA_IDS1.join(","), }); @@ -449,7 +449,7 @@ const fnBatchDelete = debounce( type: "warning", }); } - if (name === "risk") { + if (tabName.name === "risk") { await setInventoryManagementBatchDelete({ DATA_IDS: DATA_IDS2.join(","), }); From 2324d1110d5770bc5ff4fdfcefc6353eb2aa3211 Mon Sep 17 00:00:00 2001 From: LiuJiaNan Date: Thu, 1 Feb 2024 17:37:47 +0800 Subject: [PATCH 3/3] init --- src/assets/js/asyncRouter.js | 50 +++ src/assets/js/data_dictionary.js | 8 + src/components/inspection_type/index.vue | 46 +++ src/components/sign/index.vue | 2 +- src/request/data_dictionary.js | 8 +- .../safety_environmental_management.js | 10 + .../safety_environmental/add.vue | 258 +++++++++++++ .../components/defense.vue | 126 +++++++ .../components/flow_chart.vue | 79 ++++ .../safety_environmental/index.vue | 344 ++++++++++++++++++ .../safety_environmental/view.vue | 7 + 11 files changed, 936 insertions(+), 2 deletions(-) create mode 100644 src/components/inspection_type/index.vue create mode 100644 src/request/safety_environmental_management.js create mode 100644 src/views/safety_environmental_management/safety_environmental/add.vue create mode 100644 src/views/safety_environmental_management/safety_environmental/components/defense.vue create mode 100644 src/views/safety_environmental_management/safety_environmental/components/flow_chart.vue create mode 100644 src/views/safety_environmental_management/safety_environmental/index.vue create mode 100644 src/views/safety_environmental_management/safety_environmental/view.vue diff --git a/src/assets/js/asyncRouter.js b/src/assets/js/asyncRouter.js index 8774c3e..4d4d508 100644 --- a/src/assets/js/asyncRouter.js +++ b/src/assets/js/asyncRouter.js @@ -945,6 +945,56 @@ export default [ }, ], }, + { + path: "/safety_environmental_management", + redirect: "/safety_environmental_management/safety_environmental", + meta: { title: "安全、环保检查管理", model: MODEL["1"] }, + component: "children", + children: [ + { + path: "/safety_environmental_management/safety_environmental", + meta: { title: "安全、环保检查", isSubMenu: false }, + component: "children", + children: [ + { + path: "", + component: + "safety_environmental_management/safety_environmental/index", + }, + { + path: "/safety_environmental_management/safety_environmental/add", + meta: { + title: "新增", + activeMenu: + "/safety_environmental_management/safety_environmental", + }, + component: + "safety_environmental_management/safety_environmental/add", + }, + { + path: "/safety_environmental_management/safety_environmental/edit", + meta: { + title: "编辑", + activeMenu: + "/safety_environmental_management/safety_environmental", + }, + component: + "safety_environmental_management/safety_environmental/add", + }, + { + path: "/safety_environmental_management/safety_environmental/view", + meta: { + title: "查看", + activeMenu: + "/safety_environmental_management/safety_environmental", + }, + component: + "safety_environmental_management/safety_environmental/view", + }, + ], + }, + ], + }, { path: "/off_duty_management", redirect: "/off_duty_management/leave", diff --git a/src/assets/js/data_dictionary.js b/src/assets/js/data_dictionary.js index 3ade1a7..aa1b810 100644 --- a/src/assets/js/data_dictionary.js +++ b/src/assets/js/data_dictionary.js @@ -6,6 +6,7 @@ import { getDepartmentTree, getLevelsCorp, getElectronicFenceTree, + getListSelectTree, } from "@/request/data_dictionary.js"; import { ref } from "vue"; @@ -388,6 +389,13 @@ export const layoutFnGetElectronicFenceTree = async (params) => { const resData = await getElectronicFenceTree(params); return ref(JSON.parse(resData.zTreeNodes)); }; +// 检查类型树 +export const layoutFnGetInspectionTypeTree = async () => { + const resData = await getListSelectTree({ + DICTIONARIES_ID: "60e6481d96e44a5390ff5c347c4d1ffe", + }); + return ref(JSON.parse(resData.zTreeNodes)); +}; // 无法确定DICTIONARIES_ID的数据字典 export const layoutFnGetLevels = async (DICTIONARIES_ID) => { const resData = await getLevels({ DICTIONARIES_ID }); diff --git a/src/components/inspection_type/index.vue b/src/components/inspection_type/index.vue new file mode 100644 index 0000000..0710553 --- /dev/null +++ b/src/components/inspection_type/index.vue @@ -0,0 +1,46 @@ + + + + + diff --git a/src/components/sign/index.vue b/src/components/sign/index.vue index d9d66f1..2f3586c 100644 --- a/src/components/sign/index.vue +++ b/src/components/sign/index.vue @@ -14,7 +14,7 @@ :height="300" :is-crop="false" :line-width="6" - line-color="red" + line-color="#fff" />