logwire-wms-ui-test
Version:
运匠科技wms-PDA基础组件库
29 lines (23 loc) • 448 B
JavaScript
/*
* 仓库选择
* @author: 张文
* @date 2022-03-07
* */
import lwAxios from "../../utils/Axios";
export const warehouse = {
// 获取全部仓库列表
getList() {
return lwAxios.action({
url: 'getWarehouseList'
})
},
// 完成选择
selectConfirm(warehouseCode) {
return lwAxios.action({
url: 'mobileChangeWarehouse',
data:{
warehouseCode
}
})
},
}