From f35aefec0991c6b787a47e4a5309450655f48524 Mon Sep 17 00:00:00 2001 From: 叶松 <2217086471@qq.com> Date: 星期一, 20 十一月 2023 09:17:50 +0800 Subject: [PATCH] 料仓界面完成 --- web/src/api/modules/materials.js | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/web/src/api/modules/materials.js b/web/src/api/modules/materials.js index fc954a2..a8bb76d 100644 --- a/web/src/api/modules/materials.js +++ b/web/src/api/modules/materials.js @@ -134,6 +134,25 @@ */ mixingExpendLists: (params) => axios.post('/materials/materialRelease/materialRew', params), + + + /** + * 料仓屏管理 + */ + // 料仓屏列表 + searchStockInfoLists: (params) => + axios.post('/materials/suMaterialWarehouse/selectPageList', params), + //料仓屏添加/修改 + addStockInfos: (params) => + axios.post('/materials/suMaterialWarehouse/insertAndUpdate', params), + // 删除料仓屏信息 + deleteStockInfos: params => + axios.get('/materials/suMaterialWarehouse/delete', {params}), + // 料仓屏信息 + detailStockInfos: params => + axios.get('/materials/suMaterialWarehouse/selectInfo', {params}), + + /* 预埋件管理 */ embedded: { -- Gitblit v1.9.3