完成中转仓管理

This commit is contained in:
xuqiuyun
2025-12-08 15:24:43 +08:00
parent e968fcf52a
commit 620975c04d
981 changed files with 154245 additions and 83 deletions

View File

@@ -0,0 +1,46 @@
import request from '@/utils/axios.ts';
// --------- 出仓管理 -----------
// 出仓 - 列表
export function warehouseOutList(data) {
return request({
url: '/warehouseOut/list',
method: 'POST',
data,
});
}
// 出仓 - 新增
export function warehouseOutAdd(data) {
return request({
url: '/warehouseOut/add',
method: 'POST',
data,
});
}
// 出仓 - 编辑
export function warehouseOutEdit(data) {
return request({
url: '/warehouseOut/edit',
method: 'POST',
data,
});
}
// 出仓 - 删除
export function warehouseOutDel(id) {
return request({
url: `/warehouseOut/delete?id=${id}`,
method: 'GET',
});
}
// 出仓 - 详情
export function warehouseOutDetail(id) {
return request({
url: `/warehouseOut/detail?id=${id}`,
method: 'GET',
});
}