Commit 33359940 by wuqian

入库查询请求方式修改

parent c8ef357c
...@@ -436,13 +436,11 @@ export function getBySkuApi( ...@@ -436,13 +436,11 @@ export function getBySkuApi(
warehouseId: number | string | undefined, warehouseId: number | string | undefined,
sku: string | null, sku: string | null,
) { ) {
return axios.get<never, BaseRespData<InterskuList[]>>( return axios.post<never, BaseRespData<InterskuList[]>>(
'customProductItem/getBySku', 'customProductItem/getBySku',
{ {
params: { warehouseId,
warehouseId, sku,
sku,
},
}, },
) )
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment