...
|
...
|
@@ -5412,6 +5412,7 @@ $('#likeBtn').on('touchstart', function() { |
|
|
});
|
|
|
|
|
|
$('#addtoCart').on('touchstart', function() {
|
|
|
$('.cart-bar').hide();
|
|
|
chosePanel.show();
|
|
|
|
|
|
//统计代码:用于统计用户加入购物车的动作
|
...
|
...
|
@@ -5462,6 +5463,7 @@ var $chosePanel = $('#chose-panel'), |
|
|
$allChoseItems,
|
|
|
queryString,
|
|
|
$choseArea,
|
|
|
$cartBar,
|
|
|
$soonSoldOut = $('.soonSoldOut-tag'),
|
|
|
$yohoPage = $('.yoho-page');
|
|
|
|
...
|
...
|
@@ -5482,6 +5484,7 @@ function init() { |
|
|
$sizeRowList = $('.size-list ul');
|
|
|
$colorRowList = $('.color-list ul');
|
|
|
$leftNum = $('#left-num');
|
|
|
$cartBar = $('.cart-bar');
|
|
|
curColorIndex = 0;
|
|
|
curSizeIndex = 0;
|
|
|
isEdit = 0;
|
...
|
...
|
@@ -5564,6 +5567,10 @@ function show(html, cb) { |
|
|
function hide() {
|
|
|
$('.chose-panel').hide();
|
|
|
innerScroll.enableScroll($choseArea);
|
|
|
|
|
|
if ($cartBar.length > 0) {
|
|
|
$cartBar.show();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
//修改加入购物车的文字和背景
|
...
|
...
|
|