You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
532 B
26 lines
532 B
2 months ago
|
import request from '@/utils/request'
|
||
|
|
||
|
// 查询设备巡检计划列表
|
||
|
export function inspectionPlanList(data) {
|
||
|
return request({
|
||
|
url: '/material/InspectionPlan/list',
|
||
|
method: 'get',
|
||
|
data: data
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 查询设备巡检计划详细
|
||
|
export function inspectionPlanInfo(id) {
|
||
|
return request({
|
||
|
url: '/material/InspectionPlan/' + id,
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
// 修改设备巡检计划详细
|
||
|
export function setInspectionPlan(data) {
|
||
|
return request({
|
||
|
url: '/material/InspectionPlan',
|
||
|
method: 'put',
|
||
|
data: data
|
||
|
})
|
||
|
}
|