diff --git a/src/api/inventory/InspectionPlan.js b/src/api/inventory/InspectionPlan.js
new file mode 100644
index 00000000..e5441603
--- /dev/null
+++ b/src/api/inventory/InspectionPlan.js
@@ -0,0 +1,27 @@
+import axios from "../../utils/request";
+
+export function filterList(params) {
+ return axios({
+ url: "/udiwms/inv/device/inspect/plan/filter",
+ method: "get",
+ params: params
+ });
+}
+
+export function getRepairList(params) {
+ return axios({
+ url: "/udiwms/inv/device/repair/order/filter",
+ method: "get",
+ params: params
+ });
+}
+
+export function getMaintenanceList(params) {
+ return axios({
+ url: "/udiwms/inv/device/inspect/order/filter",
+ method: "get",
+ params: params
+ });
+}
+
+
diff --git a/src/views/inventory/EquipmentMaintenance.vue b/src/views/inventory/EquipmentMaintenance.vue
new file mode 100644
index 00000000..87ef712a
--- /dev/null
+++ b/src/views/inventory/EquipmentMaintenance.vue
@@ -0,0 +1,306 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 重置
+ 查询
+ 新增领用记录
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ statusMap[scope.row.status] }}
+
+
+
+
+ 编辑
+
+ 提交审核
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/inventory/EquipmentMaintenanceAudit.vue b/src/views/inventory/EquipmentMaintenanceAudit.vue
new file mode 100644
index 00000000..ddad0a27
--- /dev/null
+++ b/src/views/inventory/EquipmentMaintenanceAudit.vue
@@ -0,0 +1,352 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 重置
+ 查询
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ statusMap[scope.row.status] }}
+
+
+
+
+ 审核
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/inventory/EquipmentMaintenanceCompleted.vue b/src/views/inventory/EquipmentMaintenanceCompleted.vue
new file mode 100644
index 00000000..b642336f
--- /dev/null
+++ b/src/views/inventory/EquipmentMaintenanceCompleted.vue
@@ -0,0 +1,272 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 重置
+ 查询
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ statusMap[scope.row.status] }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/inventory/EquipmentRepairRequest.vue b/src/views/inventory/EquipmentRepairRequest.vue
new file mode 100644
index 00000000..0a286345
--- /dev/null
+++ b/src/views/inventory/EquipmentRepairRequest.vue
@@ -0,0 +1,306 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 重置
+ 查询
+ 新增领用记录
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ statusMap[scope.row.status] }}
+
+
+
+
+ 编辑
+
+ 提交审核
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/inventory/EquipmentRepairRequestAudit.vue b/src/views/inventory/EquipmentRepairRequestAudit.vue
new file mode 100644
index 00000000..864e214a
--- /dev/null
+++ b/src/views/inventory/EquipmentRepairRequestAudit.vue
@@ -0,0 +1,352 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 重置
+ 查询
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ statusMap[scope.row.status] }}
+
+
+
+
+ 审核
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/inventory/EquipmentRepairRequestCompleted.vue b/src/views/inventory/EquipmentRepairRequestCompleted.vue
new file mode 100644
index 00000000..8133d99c
--- /dev/null
+++ b/src/views/inventory/EquipmentRepairRequestCompleted.vue
@@ -0,0 +1,272 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 重置
+ 查询
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ statusMap[scope.row.status] }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/inventory/InspectionPlan.vue b/src/views/inventory/InspectionPlan.vue
new file mode 100644
index 00000000..270f5e87
--- /dev/null
+++ b/src/views/inventory/InspectionPlan.vue
@@ -0,0 +1,307 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 重置
+ 查询
+ 新增领用记录
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ statusMap[scope.row.status] }}
+
+
+
+
+ 编辑
+
+ 提交审核
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/inventory/InspectionPlanAudit.vue b/src/views/inventory/InspectionPlanAudit.vue
new file mode 100644
index 00000000..fea04fa3
--- /dev/null
+++ b/src/views/inventory/InspectionPlanAudit.vue
@@ -0,0 +1,352 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 重置
+ 查询
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ statusMap[scope.row.status] }}
+
+
+
+
+ 审核
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/inventory/InspectionPlanCompleted.vue b/src/views/inventory/InspectionPlanCompleted.vue
new file mode 100644
index 00000000..521babff
--- /dev/null
+++ b/src/views/inventory/InspectionPlanCompleted.vue
@@ -0,0 +1,272 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 重置
+ 查询
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ statusMap[scope.row.status] }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+