| | |
| | | detailStockInfos: params => |
| | | axios.get('/materials/suMaterialWarehouse/selectInfo', {params}), |
| | | |
| | | /** |
| | | * 钢筋笼材料标识牌 |
| | | */ |
| | | //钢筋笼材料标识牌列表 |
| | | searchSignBoardLists: (params) => |
| | | axios.post('/materials/suSteelCageMaterialLabel/selectPageList', params), |
| | | //钢筋笼材料标识牌添加/修改 |
| | | addSignBoardInfos: (params) => |
| | | axios.post('/materials/suSteelCageMaterialLabel/insertAndUpdate', params), |
| | | // 删除钢筋笼材料标识牌信息 |
| | | deleteSignBoardInfos: params => |
| | | axios.get('/materials/suSteelCageMaterialLabel/delete', {params}), |
| | | // 钢筋笼材料标识牌信息 |
| | | detailSignBoardInfos: params => |
| | | axios.get('/materials/suSteelCageMaterialLabel/selectInfo', {params}), |
| | | |
| | | |
| | | /* 预埋件管理 */ |
| | |
| | | checkGetLists: params => // 修改回显 |
| | | axios.post('/materials/embedmentCorrection/inventoryList', params), |
| | | }, |
| | | /* 配合比屏管理 */ |
| | | mixRatioSrcreen: { |
| | | getLists: params => |
| | | axios.post('/materials/materialRelease/mixingConsumeList', params), |
| | | insert: params => |
| | | axios.post('/materials/materialRelease/mixingConsumeIn', params), |
| | | update: params => |
| | | axios.post('/materials/materialRelease/mixingConsumeUp', params), |
| | | delete: params => |
| | | axios.post('/materials/materialRelease/mixingConsumeDel', params), |
| | | getScreenNames: params => |
| | | axios.get('/materials/materialRelease/mixingConsumePull', { params }), |
| | | }, |
| | | /* 拌合站屏管理 */ |
| | | mixingSrcreen: { |
| | | getLists: params => |
| | | axios.post('/materials/materialRelease/siloMixingList', params), |
| | | insert: params => |
| | | axios.post('/materials/materialRelease/mixingInsert', params), |
| | | update: params => |
| | | axios.post('/materials/materialRelease/mixingUpdate', params), |
| | | delete: params => |
| | | axios.post('/materials/materialRelease/mixingDel', params), |
| | | getScreenNames: params => |
| | | axios.get('/materials/materialRelease/siloPull', { params }), |
| | | }, |
| | | } |
| | | |