|
@@ -193,7 +193,9 @@ onMounted(() => {
|
|
|
}
|
|
|
}
|
|
|
proxy.post("/stockPreparation/getPackageBomList", orderList).then((res) => {
|
|
|
- formData.data.inOutStorageBomList = formData.data.inOutStorageBomList.concat(res);
|
|
|
+ if (res && res.length > 0) {
|
|
|
+ formData.data.inOutStorageBomList = formData.data.inOutStorageBomList.concat(res);
|
|
|
+ }
|
|
|
});
|
|
|
}
|
|
|
});
|