Authored by 郭成尧

Merge branch 'release/5.3' into gray

... ... @@ -40,6 +40,9 @@ class RecomData
$param['page'] = $page;
$param['limit'] = $limit;
$param['yh_channel'] = $channel;
if (isset($_COOKIE['_yasvd'])) {
$param['client_id'] = $_COOKIE['_yasvd'];
}
$param['client_secret'] = Sign::getSign($param);
return Yohobuy::get(API_URL, $param, 300);
... ...
... ... @@ -199,7 +199,10 @@ $('.btn-balance').on('touchend', function() {
var productId = [];
$('.shopping-cart-good').each(function() {
productId.push($(this).data('id'));
if($(this).find('.checkbox').hasClass('icon-cb-checked')) {
productId.push($(this).data('id'));
}
});
setTimeout(function() {
... ...