fix: 实时库存新增,功能完善。

This commit is contained in:
tianyongbao
2024-10-23 14:18:35 +08:00
parent 715b9abd05
commit 8dfb28ebcf
6 changed files with 158 additions and 217 deletions

View File

@@ -42,3 +42,12 @@ export function delMedicineStockIn(id) {
method: 'delete'
})
}
// 查询药品入库清单列表
export function listMedicineRealtimeStock(query) {
return request({
url: '/health/medicineStockIn/realTimeList',
method: 'get',
params: query
})
}