purchase.js 621 B

12345678
  1. // 采购入库
  2. export const purchaseInventory = (params, config = {custom: { auth: true }}) => uni.$u.http.post(`/pda/purchaseInventory`, params, config)
  3. // 订单明细
  4. export const orderDetail = (params, config = {custom: { auth: true }}) => uni.$u.http.get(`/pda/orderDetail/${params}`, config)
  5. // 订单明细上部
  6. export const orderInfo = (params, config = {custom: { auth: true }}) => uni.$u.http.get(`/pda/orderInfo/${params}`, config)
  7. // 订单操作、去入库/去拣货
  8. export const orderStartHandle = (params, config = {custom: { auth: true }}) => uni.$u.http.get(`/pda/orderStartHandle/${params}`, config)