init project

This commit is contained in:
tao
2025-11-17 10:01:33 +08:00
commit 77c123408d
1018 changed files with 136951 additions and 0 deletions

53
api/wms/warehouse.js Normal file
View File

@@ -0,0 +1,53 @@
import request from '@/utils/wms-request'
// 查询仓库列表
export function listWarehouse(query) {
return request({
url: '/basic/warehouse/list',
method: 'get',
params: query
})
}
// 查询仓库详细
export function getWarehouse(id) {
return request({
url: '/basic/warehouse/' + id,
method: 'get'
})
}
// 新增仓库
export function addWarehouse(data) {
return request({
url: '/basic/warehouse',
method: 'post',
data: data
})
}
// 修改仓库
export function updateWarehouse(data) {
return request({
url: '/basic/warehouse',
method: 'put',
data: data
})
}
// 删除仓库
export function delWarehouse(id) {
return request({
url: '/basic/warehouse/' + id,
method: 'delete'
})
}
// 导出仓库
export function exportWarehouse(query) {
return request({
url: '/basic/warehouse/export',
method: 'get',
params: query
})
}