Authored by chenl

调整埋点F_ID的值。review by shixiang。

... ... @@ -99,7 +99,7 @@ class CategoryBContainer extends Component {
let {currentChannelId, currentCateId} = this.props.categoryB;
let params = {
TAB_ID: currentChannelId + '',
F_ID: "F1",
F_ID: "1001",
F_NAME: "BANNER",
F_INDEX: "1",
L1_CATE: currentCateId + '',
... ... @@ -117,7 +117,7 @@ class CategoryBContainer extends Component {
//埋点
let params = {
TAB_ID: currentChannelId + '',
F_ID: "F2",
F_ID: "1002",
F_NAME: "MORE",
F_INDEX: "2",
L1_CATE: currentCateId + '',
... ... @@ -135,7 +135,7 @@ class CategoryBContainer extends Component {
let subcategoryId = value.category_id;
let params = {
TAB_ID: currentChannelId + '',
F_ID: "F2",
F_ID: "1002",
F_NAME: "全部"+currentCateValue,
F_INDEX: "2",
L1_CATE: currentCateId + '',
... ... @@ -153,7 +153,7 @@ class CategoryBContainer extends Component {
let {currentChannelId, currentCateId} = this.props.categoryB;
let params = {
TAB_ID: currentChannelId + '',
F_ID: "F3",
F_ID: "1003",
F_NAME: "热门品牌",
F_INDEX: "3",
L1_CATE: currentCateId + '',
... ...
... ... @@ -342,7 +342,7 @@ function dataExposure(channel_id, category_id, category_value, json) {
let bannerData = {
L1_CATE: category_id + '',
F_ID: 'F1',
F_ID: '1001',
F_NAME: 'BANNER',
LIST: bannerList,
}
... ... @@ -365,7 +365,7 @@ function dataExposure(channel_id, category_id, category_value, json) {
let sortData = {
L1_CATE: category_id + '',
F_ID: 'F2',
F_ID: '1002',
F_NAME: '全部'+category_value,
LIST: sortList,
}
... ... @@ -387,7 +387,7 @@ function dataExposure(channel_id, category_id, category_value, json) {
let brandData = {
L1_CATE: category_id + '',
F_ID: 'F3',
F_ID: '1003',
F_NAME: '热门品牌',
LIST: brandList,
}
... ... @@ -400,8 +400,6 @@ function dataExposure(channel_id, category_id, category_value, json) {
DATA: dataList,
};
console.log("chenlin曝光处理后数据:", JSON.stringify(params));
ReactNative.NativeModules.YH_CommonHelper.logEvent('YB_SHOW_CATEGORY', params);
};
}
\ No newline at end of file
... ...