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
17 lines
520 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
// 获取库房信息
|
|
export const getWarehouseList = data => createAPI(`warehouse/getWarehouseList`,'POST',data)
|
|
|
|
// 保存库房信息
|
|
export const saveWarehouse = data => createAPI(`warehouse/saveWarehouse`,'POST',data)
|
|
|
|
// 删除库房信息
|
|
export const delWarehouse = data => createAPI(`warehouse/delWarehouse`,'POST',data)
|
|
|
|
|
|
// 删除库房类型信息
|
|
export const getWareHouseTypeList = data => createAPI(`factory/tblbasedata/getTblBaseList`,'POST',data)
|
|
|
|
|
|
|