UNPKG

logwire-wms-pda-ui

Version:

运匠科技wms-PDA基础组件库

34 lines (28 loc) 620 B
/* * 公共使用 * @author: 张文 * @date 2022-05-12 * */ import lwAxios from "../../utils/Axios"; export const common = { // 获取货主列表 getOwnerList(){ return lwAxios.action({ url: 'wmsMobileGetOwnerList', }) }, // 根据零件号和货主查询零件信息 fromSkuAndOwnerGetSkuInfo(data){ return lwAxios.action({ url: 'wmsMobileQuerySku', data }) }, // 获取条码解析的规则 commonWmsLoadAllComponentConfig(data){ return lwAxios.action({ url: 'commonWmsLoadAllComponentConfig', data }) } }