This commit is contained in:
张江玮
2023-09-17 16:51:33 +08:00
parent bf5401fcc0
commit 7171a80f65
35 changed files with 724 additions and 795 deletions

View File

@@ -111,4 +111,20 @@ export function synchronize(data) {
})
}
export default { add, edit, del, submits, getDevice, getTable, openStart, saveReport, finish, getReportWork, forceFinish, getDtl, getMaterial, synchronize }
export function hlPause(data) {
return request({
url: 'api/workorder/hlPause',
method: 'post',
data
})
}
export function hlFinish(data) {
return request({
url: 'api/workorder/hlFinish',
method: 'post',
data
})
}
export default { add, edit, del, submits, getDevice, getTable, openStart, saveReport, finish, getReportWork, forceFinish, getDtl, getMaterial, synchronize, hlPause, hlFinish }