From 69cbe5846ee02baaafee26c376dac8db7067e972 Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Tue, 28 Mar 2023 15:18:52 +0800
Subject: [PATCH] =?UTF-8?q?=E5=B7=A1=E6=A3=80=E8=AE=A1=E5=88=92=20?=
=?UTF-8?q?=E8=AE=BE=E5=A4=87=E4=BF=9D=E4=BF=AE=20=E8=AE=BE=E5=A4=87?=
=?UTF-8?q?=E7=BB=B4=E4=BF=9D=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/inventory/InspectionPlan.js | 27 ++
src/views/inventory/EquipmentMaintenance.vue | 306 +++++++++++++++
.../inventory/EquipmentMaintenanceAudit.vue | 352 ++++++++++++++++++
.../EquipmentMaintenanceCompleted.vue | 272 ++++++++++++++
.../inventory/EquipmentRepairRequest.vue | 306 +++++++++++++++
.../inventory/EquipmentRepairRequestAudit.vue | 352 ++++++++++++++++++
.../EquipmentRepairRequestCompleted.vue | 272 ++++++++++++++
src/views/inventory/InspectionPlan.vue | 307 +++++++++++++++
src/views/inventory/InspectionPlanAudit.vue | 352 ++++++++++++++++++
.../inventory/InspectionPlanCompleted.vue | 272 ++++++++++++++
10 files changed, 2818 insertions(+)
create mode 100644 src/api/inventory/InspectionPlan.js
create mode 100644 src/views/inventory/EquipmentMaintenance.vue
create mode 100644 src/views/inventory/EquipmentMaintenanceAudit.vue
create mode 100644 src/views/inventory/EquipmentMaintenanceCompleted.vue
create mode 100644 src/views/inventory/EquipmentRepairRequest.vue
create mode 100644 src/views/inventory/EquipmentRepairRequestAudit.vue
create mode 100644 src/views/inventory/EquipmentRepairRequestCompleted.vue
create mode 100644 src/views/inventory/InspectionPlan.vue
create mode 100644 src/views/inventory/InspectionPlanAudit.vue
create mode 100644 src/views/inventory/InspectionPlanCompleted.vue
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] }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+