fix: 🧩 修復bug

This commit is contained in:
2025-10-14 09:31:12 +08:00
parent ef38880743
commit c18746fcf5
6 changed files with 54 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ const getWarehousesList = async () => {
data.forEach((item: any) => {
options.push({
id: item.id,
value: item.warehouse_number,
value: item.warehouse_number + "_" + item.id,
label: item.warehouse_name
});
});