diff --git a/src/api/inventory/deptDevice.js b/src/api/inventory/deptDevice.js
new file mode 100644
index 00000000..39352e72
--- /dev/null
+++ b/src/api/inventory/deptDevice.js
@@ -0,0 +1,33 @@
+import axios from "@/utils/request";
+
+export function getDeptDeviceList(params) {
+ return axios({
+ url: "/udiwms/inv/deptDevice/filter",
+ method: "get",
+ params: params
+ });
+}
+
+export function addDeptDevice(data) {
+ return axios({
+ url: "/udiwms/inv/deptDevice/add",
+ method: "post",
+ data: data
+ });
+}
+
+export function updateDeptDevice(data) {
+ return axios({
+ url: "/udiwms/inv/deptDevice/update",
+ method: "post",
+ data: data
+ });
+}
+
+export function deleteDeptDevice(data) {
+ return axios({
+ url: "/udiwms/inv/deptDevice/delete",
+ method: "post",
+ data: data
+ });
+}
diff --git a/src/views/inventory/DeptDeviceDetail.vue b/src/views/inventory/DeptDeviceDetail.vue
new file mode 100644
index 00000000..b3dde6a1
--- /dev/null
+++ b/src/views/inventory/DeptDeviceDetail.vue
@@ -0,0 +1,380 @@
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+ 重置
+ 查询
+ 摆放
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 提交
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 添加
+
+
+
+
+
+
+
+
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+