...
|
...
|
@@ -60,7 +60,7 @@ var limitProductCode, |
|
|
// 限购商品的skn。只有限购商品时才会设置。
|
|
|
skn;
|
|
|
|
|
|
var sizeInfo = $('.size-info');
|
|
|
var $sizeInfo;
|
|
|
|
|
|
//禁用数字编辑
|
|
|
function disableNumEdit() {
|
...
|
...
|
@@ -91,6 +91,7 @@ function init() { |
|
|
isEdit = 0;
|
|
|
$mnum = $('#mnum');
|
|
|
discountNum = $mnum.val() - 0;
|
|
|
$sizeInfo = $('.size-info');
|
|
|
}
|
|
|
|
|
|
/*
|
...
|
...
|
@@ -477,8 +478,8 @@ $yohoPage.on('touchstart', '.color-list .block', function() { |
|
|
//老的选中颜色去掉勾选,新的选中颜色加上勾选
|
|
|
changeColorChosed(0);
|
|
|
|
|
|
if (!sizeInfo.hasClass('hide')) {
|
|
|
sizeInfo.addClass('hide');
|
|
|
if (!$sizeInfo.hasClass('hide')) {
|
|
|
$sizeInfo.addClass('hide');
|
|
|
}
|
|
|
|
|
|
// 当前尺码不是选中状态,选中时
|
...
|
...
|
@@ -501,8 +502,9 @@ $yohoPage.on('touchstart', '.color-list .block', function() { |
|
|
|
|
|
curColorIndex = index + 1;
|
|
|
$curSizeBlock = $this;
|
|
|
// $('.size-info').removeClass('hide');
|
|
|
|
|
|
sizeInfo.html($(this).data('info')).removeClass('hide');
|
|
|
$sizeInfo.html($(this).data('info')).removeClass('hide');
|
|
|
}
|
|
|
|
|
|
// 颜色块切换勾选样式
|
...
|
...
|
|