This commit is contained in:
helloDy
2023-11-16 21:07:21 +08:00
parent 25d1ac8d90
commit 34e6a73852
16 changed files with 115 additions and 71 deletions

View File

@@ -1,7 +1,7 @@
/*
* @Author: Do not edit
* @Date: 2023-11-10 16:09:33
* @LastEditTime: 2023-11-10 16:50:08
* @LastEditTime: 2023-11-16 18:57:08
* @LastEditors: DY
* @Description:
*/
@@ -22,4 +22,12 @@ export function updateEqRepair(data) {
method: 'put',
data: data
})
}
}
// 删除维修记录
export function deleteRepair(id) {
return request({
url: '/base/equipment-repair-log/delete?id=' + id,
method: 'delete'
})
}