...
|
...
|
@@ -142,9 +142,9 @@ function changeSizeChosed(newSizeIndex) { |
|
|
$curSizeBlock.removeClass('chosed');
|
|
|
sizes = $sizeRowList.eq(newSizeIndex).children();
|
|
|
for (i = 0; i < sizes.length; i++) {
|
|
|
if ($(sizes[i]).data('name') === $curSizeBlock.data('name')) {
|
|
|
if ($(sizes[i]).data('id') === $curSizeBlock.data('id')) {
|
|
|
$curSizeBlock = $(sizes[i]);
|
|
|
queryString = '#' + $curSizeBlock.data('name');
|
|
|
queryString = '#' + $curSizeBlock.data('id');
|
|
|
curColorIndex = $(queryString).data('index');
|
|
|
$curSizeBlock.addClass('chosed');
|
|
|
return $curSizeBlock.data('num');
|
...
|
...
|
@@ -282,7 +282,7 @@ $yohoPage.on('touchstart', '.color-list .block', function() { |
|
|
} else {
|
|
|
hasChooseSize = true;
|
|
|
|
|
|
index = $('#' + $this.data('name')).data('index') - 1;
|
|
|
index = $('#' + $this.data('id')).data('index') - 1;
|
|
|
|
|
|
// 颜色当前行隐藏
|
|
|
$colorRowList.eq(curColorIndex).addClass('hide');
|
...
|
...
|
|