|
|
@@ -1521,10 +1521,15 @@
|
|
|
});
|
|
|
|
|
|
this.productList = res.map((item, index) => {
|
|
|
- let filtersItem = this.saleProductList.filter(
|
|
|
+ let filtersItem = this.saleProductList.find(
|
|
|
(detailItem) =>
|
|
|
- detailItem.productCode || detailItem.categoryCode == item.code
|
|
|
- )[0];
|
|
|
+ item.code == detailItem.productCode ||
|
|
|
+ item.code == detailItem.categoryCode
|
|
|
+ );
|
|
|
+ // let filtersItem = this.saleProductList.filter(
|
|
|
+ // (detailItem) =>
|
|
|
+ // detailItem.productCode || detailItem.categoryCode == item.code
|
|
|
+ // )[0];
|
|
|
|
|
|
// 显示规格
|
|
|
let packingSpecificationLabel = this.packingSpecificationOption[
|