add:增加工单排产调整相关功能。

This commit is contained in:
2023-12-08 15:56:59 +08:00
parent 45a102eed0
commit 462728956e
70 changed files with 6177 additions and 2668 deletions

View File

@@ -30,6 +30,7 @@ export function getWorkprocedure() {
method: 'get'
})
}
export function getDeviceList() {
return request({
url: 'api/device/getDeviceList',
@@ -68,4 +69,23 @@ export function queryById(device_id) {
})
}
export default { add, edit, del, getWorkprocedure, getItemByDevice, savaDeviceItem, copyAdd, queryById, getDeviceList }
export function query(data) {
return request({
url: 'api/device/query',
method: 'post',
data
})
}
export default {
query,
add,
edit,
del,
getWorkprocedure,
getItemByDevice,
savaDeviceItem,
copyAdd,
queryById,
getDeviceList
}