排程模块完成

This commit is contained in:
qianhao.xu
2023-11-23 16:03:45 +08:00
parent 16050b2387
commit 5981dfdb6b
2 changed files with 107 additions and 18 deletions

View File

@@ -31,3 +31,19 @@ export function CancelScheduling(id) {
method: 'get',
})
}
export function releaseProduction(id) {
return request({
url: '/mes/pro/workorder/releaseProduction/' + id,
method: 'get',
})
}
export function saveSrotResults(data) {
return request({
url: '/mes/pro/workorder/sortschedule',
method: 'post',
data: data,
contextType: 'application/json',
})
}