设备保养设备巡检

This commit is contained in:
helloDy
2024-02-27 09:22:03 +08:00
parent 7da93bbca0
commit ef740fec27
37 changed files with 7009 additions and 165 deletions

View File

@@ -1,7 +1,7 @@
/*
* @Author: Do not edit
* @Date: 2023-11-08 15:56:52
* @LastEditTime: 2024-02-24 18:51:54
* @LastEditTime: 2024-02-26 09:29:53
* @LastEditors: DY
* @Description:
*/
@@ -103,3 +103,20 @@ export function deleteCheckOrderDet(id) {
method: 'delete'
})
}
// 获得设备巡检计划单
export function getEqCheckOrder(id) {
return request({
url: '/base/equipment-check-order/get?id=' + id,
method: 'get'
})
}
// 获得设备巡检单分页
export function getCheckOrderPage(query) {
return request({
url: '/base/equipment-check-order/page',
method: 'get',
params: query
})
}