Commit b5c6d63b by wuqian

Merge branch 'dev'

parents 143eaf2c 33359940
...@@ -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