yangfeng
2023-09-22 fbdb1d15b6cf692d27598806eee6be6f16e1f36d
src/api/overview/overview.js
@@ -33,9 +33,11 @@
}
// 查询入库/出库列表
export const getOperation = async (data) => {
  return await axios.get(`/api-wms/v1/operation/operation`, {
    params: data
export function getOperation(data) {
  return request({
    url: "/api-wms/v1/operation/list",
    method: "post",
    data
  })
}
// 添加入库/出库
@@ -79,3 +81,12 @@
    data
  })
}
// 获取全部调拨列表
export function getAllList(data) {
  return request({
    url: "/api-wms/v1/operation/listAll",
    method: "post",
    data
  })
}