diff --git a/src/api/sluice/patrolMaintenance.js b/src/api/sluice/patrolMaintenance.js new file mode 100644 index 0000000..6be1f19 --- /dev/null +++ b/src/api/sluice/patrolMaintenance.js @@ -0,0 +1,97 @@ +// 堤防相关接口 +import request from "@/utils/request"; +export * from "./analysis"; + +/*************************************巡查记录管理**************************************/ +// 堤防巡视检查记录列表v2 +export function postV2RecordList(data) { + return request({ + url: "/run/sz/v2/record/list", + method: "post", + data, + }); +} +// 堤防巡视检查记录新增或修改v2 +export function postV2Record(data, commit) { + return request({ + url: `/run/sz/v2/record/${commit}`, + method: "post", + data, + }); +} + +// 堤防巡视检查记录详情v2 +export function gettV2Record(id) { + return request({ + url: `/run/sz/v2/record/${id}`, + method: "get", + }); +} + +/*************************************缺陷清单管理**************************************/ +// 堤防巡查缺陷列表v2 +export function postV2ProblemList(data) { + return request({ + url: "/run/sz/v2/problem/list", + method: "post", + data, + }); +} +/*************************************养护记录管理**************************************/ +// 堤防养护列表v2 +export function postV2YhList(data) { + return request({ + url: "/run/sz/v2/yh/list", + method: "post", + data, + }); +} + +// 堤防养护详情v2 +export function getV2Yh(id) { + return request({ + url: `/run/sz/v2/yh/${id}`, + method: "get", + }); +} + +// 堤防养护新增或修改v2 +export function postV2Yh(data, commit) { + return request({ + url: `/run/sz/v2/yh/${commit}`, + method: "post", + data, + }); +} +/*************************************验收记录管理**************************************/ +// 审批列表 +export function postV2ApprovalList(data) { + return request({ + url: "/run/sz/v2/yh/approval/list", + method: "post", + data, + }); +} +// 审批通过 +export function postV2ApprovalPassed(data, id) { + return request({ + url: `/run/sz/v2/yh/approval/passed/${id}`, + method: "post", + data, + }); +} +// 审批驳回 +export function postV2ApprovalRejected(data, id) { + return request({ + url: `/run/sz/v2/yh/approval/rejected/${id}`, + method: "post", + data, + }); +} +// 审批意见 +export function getV2ApprovalComment(formId) { + return request({ + url: `/run/sz/v2/yh/approval/comment/${formId}`, + method: "get", + }); +} diff --git a/src/assets/image/SodaMusic-v2.1.0-official-win32_x64.exe b/src/assets/image/SodaMusic-v2.1.0-official-win32_x64.exe new file mode 100644 index 0000000..4a5a616 Binary files /dev/null and b/src/assets/image/SodaMusic-v2.1.0-official-win32_x64.exe differ diff --git a/src/views/sluice/runManage/patrolMaintenance/InspectionRecords/index.vue b/src/views/sluice/runManage/patrolMaintenance/InspectionRecords/index.vue new file mode 100644 index 0000000..be3a945 --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/InspectionRecords/index.vue @@ -0,0 +1,371 @@ + + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/acceptanceRecords/index.vue b/src/views/sluice/runManage/patrolMaintenance/acceptanceRecords/index.vue new file mode 100644 index 0000000..ae20c83 --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/acceptanceRecords/index.vue @@ -0,0 +1,389 @@ + + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/componentsDetails/acceptanceDetails.vue b/src/views/sluice/runManage/patrolMaintenance/componentsDetails/acceptanceDetails.vue new file mode 100644 index 0000000..d6e4025 --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/componentsDetails/acceptanceDetails.vue @@ -0,0 +1,397 @@ + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/componentsDetails/defectDetails.vue b/src/views/sluice/runManage/patrolMaintenance/componentsDetails/defectDetails.vue new file mode 100644 index 0000000..743b772 --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/componentsDetails/defectDetails.vue @@ -0,0 +1,183 @@ + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/componentsDetails/inspectionRecordDetails.vue b/src/views/sluice/runManage/patrolMaintenance/componentsDetails/inspectionRecordDetails.vue new file mode 100644 index 0000000..0060c5a --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/componentsDetails/inspectionRecordDetails.vue @@ -0,0 +1,585 @@ + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/componentsDetails/maintenanceDetails.vue b/src/views/sluice/runManage/patrolMaintenance/componentsDetails/maintenanceDetails.vue new file mode 100644 index 0000000..7e245d2 --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/componentsDetails/maintenanceDetails.vue @@ -0,0 +1,480 @@ + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/defectList/index.vue b/src/views/sluice/runManage/patrolMaintenance/defectList/index.vue new file mode 100644 index 0000000..5ac0664 --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/defectList/index.vue @@ -0,0 +1,376 @@ + + + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/index.vue b/src/views/sluice/runManage/patrolMaintenance/index.vue new file mode 100644 index 0000000..98240ae --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/index.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/sluice/runManage/patrolMaintenance/maintenanceRecords/index.vue b/src/views/sluice/runManage/patrolMaintenance/maintenanceRecords/index.vue new file mode 100644 index 0000000..df654b8 --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/maintenanceRecords/index.vue @@ -0,0 +1,395 @@ + + + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/overviewAnalysis/index.vue b/src/views/sluice/runManage/patrolMaintenance/overviewAnalysis/index.vue new file mode 100644 index 0000000..161d17e --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/overviewAnalysis/index.vue @@ -0,0 +1,347 @@ + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/patrolItemsManage/details.vue b/src/views/sluice/runManage/patrolMaintenance/patrolItemsManage/details.vue new file mode 100644 index 0000000..194d7ed --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/patrolItemsManage/details.vue @@ -0,0 +1,529 @@ + + + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/patrolItemsManage/index.vue b/src/views/sluice/runManage/patrolMaintenance/patrolItemsManage/index.vue new file mode 100644 index 0000000..5fbec10 --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/patrolItemsManage/index.vue @@ -0,0 +1,320 @@ + + + + + + diff --git a/src/views/sluice/runManage/patrolMaintenance/statisticsAnalysis/index.vue b/src/views/sluice/runManage/patrolMaintenance/statisticsAnalysis/index.vue new file mode 100644 index 0000000..9ae03f1 --- /dev/null +++ b/src/views/sluice/runManage/patrolMaintenance/statisticsAnalysis/index.vue @@ -0,0 +1,744 @@ + + +