You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
520 B

  1. import { createAPI } from "@/utils/httpRequest.js";
  2. // 获取库房信息
  3. export const getWarehouseList = data => createAPI(`warehouse/getWarehouseList`,'POST',data)
  4. // 保存库房信息
  5. export const saveWarehouse = data => createAPI(`warehouse/saveWarehouse`,'POST',data)
  6. // 删除库房信息
  7. export const delWarehouse = data => createAPI(`warehouse/delWarehouse`,'POST',data)
  8. // 删除库房类型信息
  9. export const getWareHouseTypeList = data => createAPI(`factory/tblbasedata/getTblBaseList`,'POST',data)