Showing
2 changed files
with
5 additions
and
5 deletions
@@ -72,7 +72,7 @@ let functions = { | @@ -72,7 +72,7 @@ let functions = { | ||
72 | if (!yoho.getUid()) { | 72 | if (!yoho.getUid()) { |
73 | let preInfo = `${sku}_${skn}_${buyNum}`; | 73 | let preInfo = `${sku}_${skn}_${buyNum}`; |
74 | 74 | ||
75 | - window.setCookie('activity-info', preInfo); | 75 | + window.setCookie('cart-info', preInfo); |
76 | window.location.href = '//m.yohobuy.com/signin.html?refer=' + window.location.href; | 76 | window.location.href = '//m.yohobuy.com/signin.html?refer=' + window.location.href; |
77 | } | 77 | } |
78 | if (window._yas && window._yas.sendCustomInfo) { | 78 | if (window._yas && window._yas.sendCustomInfo) { |
@@ -107,7 +107,7 @@ let functions = { | @@ -107,7 +107,7 @@ let functions = { | ||
107 | cartNum = '99+'; | 107 | cartNum = '99+'; |
108 | } | 108 | } |
109 | $('.num-tag').html(cartNum).removeClass('hide'); | 109 | $('.num-tag').html(cartNum).removeClass('hide'); |
110 | - window.setCookie('activity-info', ''); | 110 | + window.setCookie('cart-info', ''); |
111 | } | 111 | } |
112 | 112 | ||
113 | if (res.message) { | 113 | if (res.message) { |
@@ -156,13 +156,13 @@ setTimeout(() => { | @@ -156,13 +156,13 @@ setTimeout(() => { | ||
156 | 156 | ||
157 | let chosePanel = require('common/chose-panel-new'); | 157 | let chosePanel = require('common/chose-panel-new'); |
158 | 158 | ||
159 | - if (window.cookie('activity-info') && yoho.getUid()) { | ||
160 | - let preInfo = window.cookie('activity-info').split('_'); | 159 | + if (window.cookie('cart-info') && yoho.getUid()) { |
160 | + let preInfo = window.cookie('cart-info').split('_'); | ||
161 | 161 | ||
162 | if (preInfo[1] === $('#productSkn').val()) { | 162 | if (preInfo[1] === $('#productSkn').val()) { |
163 | detailFuns.addToCart(preInfo[0], preInfo[1], preInfo[2]); | 163 | detailFuns.addToCart(preInfo[0], preInfo[1], preInfo[2]); |
164 | } else { | 164 | } else { |
165 | - window.setCookie('activity-info', ''); | 165 | + window.setCookie('cart-info', ''); |
166 | } | 166 | } |
167 | } | 167 | } |
168 | 168 |
-
Please register or login to post a comment