|
@@ -91,7 +91,6 @@ const formConfig = computed(() => {
|
|
|
fn: (val) => {
|
|
|
if (val) {
|
|
|
proxy.post("/productionExceedReceive/getOrderSkuList", { id: val }).then((res) => {
|
|
|
- console.log(res);
|
|
|
if (res && res.length > 0) {
|
|
|
formData.data.productionCostList = res.map((item) => {
|
|
|
return {
|
|
@@ -101,6 +100,7 @@ const formConfig = computed(() => {
|
|
|
bomCode: item.bomCode,
|
|
|
quantity: undefined,
|
|
|
orderQuantity: item.quantity,
|
|
|
+ id: item.id,
|
|
|
};
|
|
|
});
|
|
|
} else {
|