src/api/overview/overview.js
@@ -57,8 +57,25 @@ // 编辑入库/出库 export function updateOperation(data) { return request({ url: `/api-wms/v1/operation/operation/${data.id}`, url: `/api-wms/v1/operation/update`, method: "post", data }) } // 验证 更改记录状态 export function updateStatus(id) { return request({ url: `/api-wms/v1/operation/finish/${id}`, method: "put", id }) } // 获取位置列表 export function getLocationList(data) { return request({ url: "/api-wms/v1/location/getLocationList", method: "post", data }) }