This commit is contained in:
2026-04-24 00:52:30 +08:00
parent 2bfce239fb
commit 06708df3af
4 changed files with 28 additions and 18 deletions
@@ -114,7 +114,7 @@ async function fetchAllContainerMap() {
const { errCode, data } = await warehouseApi.getContainers({ entries: 500, page: 1 })
if (errCode === 0 && data) {
const map = {}
for (const c of (data.containers || [])) map[c.id] = c.title
for (const c of (data.containers || [])) map[c.ID] = c.Title
containerMap.value = map
}
} catch { /* ignore */ }