Authored by 孙凯

修改 大数据埋点bug review by zhanglixia

... ... @@ -838,7 +838,6 @@ function exposeBannerData(data,type,channel) {
P_NAME: pageName,
P_PARAM: channelStr,
I_INDEX: parseInt(i) + 1 + '',
BRAND_ID: item.brand_id,
SHOP_ID: item.shops_id,
C_ID: channel,
exposureEnd : 1,
... ...
... ... @@ -75,7 +75,14 @@ export default class DoubleImage extends React.Component {
} else if (linkType1 == '1') {
url1 = `http://m.yohobuy.com?openby:yohobuy={"action":"go.productDetail","params":{"product_skn":"${linkReource1}"}}`;
} else if (linkType1 == '2') {
url1 = linkReource;
url1 = linkReource1;
}
if (linkType2 == '0') {
url2 = `http://m.yohobuy.com?openby:yohobuy={"action":"go.poollist","params":{"productPool":"${linkReource2}"}}`;
} else if (linkType2 == '1') {
url2 = `http://m.yohobuy.com?openby:yohobuy={"action":"go.productDetail","params":{"product_skn":"${linkReource2}"}}`;
} else if (linkType2 == '2') {
url2 = linkReource2;
}
let yh_exposureData = this.props.yh_exposureData?this.props.yh_exposureData:null;
let yh_exposureData0 = null;
... ...