55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
import request from '@/utils/request'
|
|
|
|
// 创建立体仓库出入库数据货物关联
|
|
export function createWarehouseStorehouseStorageGoodsSpecification(data) {
|
|
return request({
|
|
url: '/asrs/warehouse-storehouse-storage-goods-specification/create',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 更新立体仓库出入库数据货物关联
|
|
export function updateWarehouseStorehouseStorageGoodsSpecification(data) {
|
|
return request({
|
|
url: '/asrs/warehouse-storehouse-storage-goods-specification/update',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除立体仓库出入库数据货物关联
|
|
export function deleteWarehouseStorehouseStorageGoodsSpecification(id) {
|
|
return request({
|
|
url: '/asrs/warehouse-storehouse-storage-goods-specification/delete?id=' + id,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
// 获得立体仓库出入库数据货物关联
|
|
export function getWarehouseStorehouseStorageGoodsSpecification(id) {
|
|
return request({
|
|
url: '/asrs/warehouse-storehouse-storage-goods-specification/get?id=' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 获得立体仓库出入库数据货物关联分页
|
|
export function getWarehouseStorehouseStorageGoodsSpecificationPage(query) {
|
|
return request({
|
|
url: '/asrs/warehouse-storehouse-storage-goods-specification/page',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 导出立体仓库出入库数据货物关联 Excel
|
|
export function exportWarehouseStorehouseStorageGoodsSpecificationExcel(query) {
|
|
return request({
|
|
url: '/asrs/warehouse-storehouse-storage-goods-specification/export-excel',
|
|
method: 'get',
|
|
params: query,
|
|
responseType: 'blob'
|
|
})
|
|
}
|