12345678910111213141516171819202122232425 |
- //商品存货查询
- export const inventoryInquiry = (
- params,
- config = { custom: { auth: true } }
- ) => {
- return uni.$u.http.post(
- `/pda/inventoryInquiry?currentPage=${params.currentPage}&pageSize=${params.pageSize}`,
- params,
- config
- );
- };
- //库位
- export const inventoryPositionTree = (
- params,
- config = { custom: { auth: true } }
- ) => {
- return uni.$u.http.get(`/pda/inventoryPositionTree`, { params }, config);
- };
- //分类
- export const materialCategoryTree = (
- params,
- config = { custom: { auth: true } }
- ) => {
- return uni.$u.http.get(`/pda/inventoryTypeTree`, config);
- };
|