| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | // 采购入库export const purchaseInventory = (  params,  config = { custom: { auth: true } }) =>  uni.$u.http.post(    `/pda/purchaseInventory?currentPage=${params.currentPage}&pageSize=${params.pageSize}`,    params,    config  );// 订单明细export const orderDetail = (urlparams, config = { custom: { auth: true } }) =>  uni.$u.http.get(`/pda/orderDetail/${urlparams}`, config);// 订单明细上部export const orderInfo = (urlparams, config = { custom: { auth: true } }) =>  uni.$u.http.get(`/pda/orderInfo/${urlparams}`, config);// 订单操作、去入库/去拣货export const orderStartHandle = (  urlparams,  config = { custom: { auth: true } }) => uni.$u.http.get(`/pda/orderStartHandle/${urlparams}`, config);// 	商品详情export const materialDetail = (  urlparams,  config = { custom: { auth: true } }) => uni.$u.http.get(`/pda/materialDetail/${urlparams}`, config);// 商品库存详情export const materialDepotDetail = (  urlparams,  data,  config = { custom: { auth: true } }) =>  uni.$u.http.get(    `/pda/materialDepotDetail/${urlparams.type}/${urlparams.materialId}/${urlparams.depotId}`,    { data, config }  );// 商品入库export const orderSubmit = (params, config = { custom: { auth: true } }) =>  uni.$u.http.post(`/pda/orderSubmit`, params, config);// 仓库下拉框export const depotSpinnerList = (  urlparams,  data,  config = { custom: { auth: true } }) => uni.$u.http.get(`/pda/depotSpinnerList`, { data, config });
 |