123456789101112 |
- //货物录入列表
- export const goodsInputList = (params, config = { custom: { auth: true } }) => {
- return uni.$u.http.post(
- `/pda/goodsInputList?currentPage=${params.currentPage}&pageSize=${params.pageSize}`,
- params,
- config
- );
- };
- //货物信息录入保存
- export const goodsSave = (params, config = { custom: { auth: true } }) => {
- return uni.$u.http.post(`/pda/goodsSave`, params, config);
- };
|