zxr hace 3 años
padre
commit
d4dc1ad9f1

+ 53 - 0
src/api/medicalhealth/antiepidemicruin.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询防疫用品销毁记录列表
+export function listRuin(query) {
+    return request({
+        url: '/medicalhealth/ruin/list',
+        method: 'get',
+        params: query
+    })
+}
+
+// 查询防疫用品销毁记录详细
+export function getRuin(id) {
+    return request({
+        url: '/medicalhealth/ruin/' + id,
+        method: 'get'
+    })
+}
+
+// 新增防疫用品销毁记录
+export function addRuin(data) {
+    return request({
+        url: '/medicalhealth/ruin',
+        method: 'post',
+        data: data
+    })
+}
+
+// 修改防疫用品销毁记录
+export function updateRuin(data) {
+    return request({
+        url: '/medicalhealth/ruin',
+        method: 'put',
+        data: data
+    })
+}
+
+// 删除防疫用品销毁记录
+export function delRuin(id) {
+    return request({
+        url: '/medicalhealth/ruin/' + id,
+        method: 'delete'
+    })
+}
+
+// 导出防疫用品销毁记录
+export function exportRuin(query) {
+    return request({
+        url: '/medicalhealth/ruin/export',
+        method: 'get',
+        params: query
+    })
+}

BIN
src/assets/images/背景-denglu.png


BIN
src/assets/images/边框.png