This commit is contained in:
USER-20220102CG\noblelift
2022-07-07 10:56:45 +08:00
parent b1ba017547
commit 2f537a0a5e
28 changed files with 848 additions and 344 deletions

View File

@@ -0,0 +1,27 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: 'api/produceshiftorderdetail',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: 'api/produceshiftorderdetail/',
method: 'delete',
data: ids
})
}
export function edit(data) {
return request({
url: 'api/produceshiftorderdetail',
method: 'put',
data
})
}
export default { add, edit, del }