goodsEnter.js 416 B

123456789101112
  1. //货物录入列表
  2. export const goodsInputList = (params, config = { custom: { auth: true } }) => {
  3. return uni.$u.http.post(
  4. `/pda/goodsInputList?currentPage=${params.currentPage}&pageSize=${params.pageSize}`,
  5. params,
  6. config
  7. );
  8. };
  9. //货物信息录入保存
  10. export const goodsSave = (params, config = { custom: { auth: true } }) => {
  11. return uni.$u.http.post(`/pda/goodsSave`, params, config);
  12. };