fix:出库逻辑

This commit is contained in:
zhangzq
2025-07-11 15:28:39 +08:00
parent db4b49c58f
commit 02f56f7a8d
8 changed files with 156 additions and 334 deletions

View File

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