This commit is contained in:
2022-08-02 13:21:19 +08:00
parent 20d6197c77
commit e17321fd0e
8 changed files with 455 additions and 252 deletions

View File

@@ -8,6 +8,14 @@ export function add(data) {
})
}
export function addRows(data) {
return request({
url: 'api/produceshiftorder/addRows',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: 'api/produceshiftorder/',
@@ -96,4 +104,4 @@ export function getDtl(data) {
})
}
export default { add, edit, del, submits, getDevice, getTable, openStart, saveReport, finish, getReportWork, forceFinish, getDtl }
export default { add, addRows, edit, del, submits, getDevice, getTable, openStart, saveReport, finish, getReportWork, forceFinish, getDtl }