feat(material): add global floating helper to track latest specification codes with smart grouping

This commit is contained in:
DXC
2026-04-13 08:28:27 +08:00
parent e23e8c6a9e
commit c7ac092be4
5 changed files with 298 additions and 1 deletions

View File

@ -69,4 +69,12 @@ export function batchSetInspection(data: { ids: number[], isInspectionRequired:
method: 'post',
data
})
}
// 7. 获取智能分组规格最大连号
export function getLatestSpecs() {
return request({
url: '/inbound/base/spec-latest',
method: 'get'
})
}