inventoryInquiry.js 516 B

123456789101112131415161718192021
  1. //商品存货查询
  2. export const inventoryInquiry = (
  3. params,
  4. config = { custom: { auth: true } }
  5. ) => {
  6. return uni.$u.http.post(`/pda/inventoryInquiry`, params, config);
  7. };
  8. //库位
  9. export const inventoryPositionTree = (
  10. params,
  11. config = { custom: { auth: true } }
  12. ) => {
  13. return uni.$u.http.get(`/pda/inventoryPositionTree`, config);
  14. };
  15. //分类
  16. export const materialCategoryTree = (
  17. params,
  18. config = { custom: { auth: true } }
  19. ) => {
  20. return uni.$u.http.get(`/pda/inventoryTypeTree`, config);
  21. };