diff --git a/src/api/system/eqDown.js b/src/api/system/eqDown.js
new file mode 100644
index 0000000..fd830d0
--- /dev/null
+++ b/src/api/system/eqDown.js
@@ -0,0 +1,28 @@
+import request from '@/utils/request'
+
+// 查询下发记录列表
+export function pageList(query) {
+ return request({
+ url: '/system/sysEqDownRecord/pageList',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询下发记录详细
+export function getDownRecord(id) {
+ return request({
+ url: '/system/sysEqDownRecord/' + id,
+ method: 'get'
+ })
+}
+
+// 新增下发记录
+export function down(data) {
+ return request({
+ url: '/system/sysEqDownRecord/down',
+ method: 'post',
+ data: data
+ })
+}
+
diff --git a/src/views/system/eqDown/index.vue b/src/views/system/eqDown/index.vue
new file mode 100644
index 0000000..5eee3ca
--- /dev/null
+++ b/src/views/system/eqDown/index.vue
@@ -0,0 +1,250 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 重新下发
+
+
+
+
+
+
+
+
+
+ {{scope.row.peopleName}}
+
+
+
+
+ {{scope.row.equipmentName}}
+
+
+
+
+
+ 失败
+
+
+ 成功
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+
+
+
+ {{scope.row.msg}}
+
+
+
+
+ {{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}
+
+
+
+
+ 重新下发
+
+
+
+
+
+
+
+
+
+
+