🎈 perf: 仅优化UI使其更紧凑

This commit is contained in:
砂糖
2025-09-13 11:50:11 +08:00
parent 0c01d4af8a
commit 0e93df9985
24 changed files with 86 additions and 58 deletions

View File

@@ -42,3 +42,14 @@ export function delStock(stockId) {
method: 'delete'
})
}
// 物料追溯:根据批次号查找所有关联的单据明细
export function getStockTrace(batchNo) {
return request({
url: '/wms/stockIoDetail/batch',
method: 'post',
data: {
batchNo
}
})
}