Authored by 刘传洋

Merge branch 'release/5.4.1' of http://git.yoho.cn/fe/YOHOBUYPC into release/5.4.1

... ... @@ -12355,7 +12355,7 @@ function packExchangeInfo() {
}
res.areaCode = $street.val();
if (!verifyTip && !res.areaCode * 1) {
if (!verifyTip && !(res.areaCode * 1)) {
verifyTip = '请选择地区';
}
... ... @@ -17798,7 +17798,7 @@ $('.to-play input.submit').click(function() {
pinyouItems.push({id: $(this).attr('data-skn'), count: parseInt($(this).html()), price: $(this).next('.cart-sub-total ').html()})
});
// 埋点
window.addPoint('YB_SC_TOPAY_CLICK', {ORDER_CODE: d.data.order_code, PRD_NUM: productNum, ORDER_AMOUNT: d.data.order_amount, PRO_SKN: productSkn.join(','), PRO_SKU:productSku.join(','), UNIONCOOKIE: encodeURIComponent(d.data.unionKey + '') || ''});
window.addPoint('YB_SC_TOPAY_CLICK', {ORDER_CODE: d.data.order_code, PRD_NUM: productNum, ORDER_AMOUNT: d.data.order_amount, PRO_SKN: productSkn.join(','), PRO_SKU:productSku.join(',')});
// 品友
if (typeof (py) != 'undefined') {
py('event','order' ,{
... ...
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
... ... @@ -382,7 +382,7 @@ function packExchangeInfo() {
}
res.areaCode = $street.val();
if (!verifyTip && !res.areaCode * 1) {
if (!verifyTip && !(res.areaCode * 1)) {
verifyTip = '请选择地区';
}
... ...
... ... @@ -869,7 +869,7 @@ $('.to-play input.submit').click(function() {
pinyouItems.push({id: $(this).attr('data-skn'), count: parseInt($(this).html()), price: $(this).next('.cart-sub-total ').html()})
});
// 埋点
window.addPoint('YB_SC_TOPAY_CLICK', {ORDER_CODE: d.data.order_code, PRD_NUM: productNum, ORDER_AMOUNT: d.data.order_amount, PRO_SKN: productSkn.join(','), PRO_SKU:productSku.join(','), UNIONCOOKIE: encodeURIComponent(d.data.unionKey + '') || ''});
window.addPoint('YB_SC_TOPAY_CLICK', {ORDER_CODE: d.data.order_code, PRD_NUM: productNum, ORDER_AMOUNT: d.data.order_amount, PRO_SKN: productSkn.join(','), PRO_SKU:productSku.join(',')});
// 品友
if (typeof (py) != 'undefined') {
py('event','order' ,{
... ...