...
|
...
|
@@ -140,7 +140,7 @@ class CategoryBContainer extends Component { |
|
|
F_INDEX: "2",
|
|
|
L1_CATE: currentCateId + '',
|
|
|
L2_CATE: subcategoryId + '',
|
|
|
I_INDEX: index + 1 + '',
|
|
|
I_INDEX: parseInt(index) + 1 + '',
|
|
|
PRD_SKN: value.product_skn + '',
|
|
|
};
|
|
|
NativeModules.YH_CommonHelper.logEvent('YB_CATEGORY_CAT_FLR_C', params);
|
...
|
...
|
@@ -157,7 +157,7 @@ class CategoryBContainer extends Component { |
|
|
F_NAME: "热门品牌",
|
|
|
F_INDEX: "3",
|
|
|
L1_CATE: currentCateId + '',
|
|
|
I_INDEX: index + 1 + '',
|
|
|
I_INDEX: parseInt(index) + 1 + '',
|
|
|
BRAND_ID: data.id + '',
|
|
|
};
|
|
|
NativeModules.YH_CommonHelper.logEvent('YB_CATEGORY_CAT_FLR_C', params);
|
...
|
...
|
|