...
|
...
|
@@ -314,9 +314,9 @@ export function goodsProductBySkns(item, contentIndex) { |
|
|
return new DetailService(app.host).productInfoBySkns(skns)
|
|
|
.then(json => {
|
|
|
let productList = [];
|
|
|
// 最多显示4个
|
|
|
let result = json.product_list.slice(0, 4);
|
|
|
result.map((item3, i3) => {
|
|
|
// 最多显示4个------------ 逛最开始的逻辑 改版后产品确认暂时不需要
|
|
|
//let result = json.product_list.slice(0, 4);
|
|
|
json.product_list.map((item3, i3) => {
|
|
|
let src = productImages[item3.product_skn];
|
|
|
if (src) {
|
|
|
if (item3.tags.includes('is_soon_sold_out')) {
|
...
|
...
|
|