@@ -1323,7 +1323,10 @@ export default {
this.form,
"goodsList",
res.data.sellOrders.map(item => {
- return { id: item.goodsId, number: item.num };
+ return {
+ id: item.parentGoodsId || item.goodsId,
+ number: item.num
+ };
})
);