Authored by hf

Merge remote-tracking branch 'origin/develop'

@@ -159,7 +159,6 @@ $yohoPage.on('touchstart', '.chose-panel', function(e) { @@ -159,7 +159,6 @@ $yohoPage.on('touchstart', '.chose-panel', function(e) {
159 $yohoPage.on('touchstart', '.color-list .block', function() { 159 $yohoPage.on('touchstart', '.color-list .block', function() {
160 var $this = $(this), 160 var $this = $(this),
161 index, 161 index,
162 - curSizeBlock,  
163 $preSiblingBlock, 162 $preSiblingBlock,
164 $curSizeRow, 163 $curSizeRow,
165 numArray, 164 numArray,
@@ -203,13 +202,13 @@ $yohoPage.on('touchstart', '.color-list .block', function() { @@ -203,13 +202,13 @@ $yohoPage.on('touchstart', '.color-list .block', function() {
203 // 之前选中的尺码去掉勾选样式 202 // 之前选中的尺码去掉勾选样式
204 if ($preSiblingBlock.length > 0) { 203 if ($preSiblingBlock.length > 0) {
205 $preSiblingBlock.removeClass('chosed'); 204 $preSiblingBlock.removeClass('chosed');
206 - curSizeBlock = $curSizeRow.children().get(curSizeIndex); 205 + $curSizeBlock = $curSizeRow.children().get(curSizeIndex);
207 } 206 }
208 207
209 // 当前选中颜色对应的尺码行,其对应的尺码加上勾选样式 (前提是要判断下这个尺码是否存在) 208 // 当前选中颜色对应的尺码行,其对应的尺码加上勾选样式 (前提是要判断下这个尺码是否存在)
210 - if (curSizeBlock) {  
211 - curGoodNum = $(curSizeBlock).data('num');  
212 - $(curSizeBlock).addClass('chosed'); 209 + if ($curSizeBlock) {
  210 + curGoodNum = $curSizeBlock.data('num');
  211 + $curSizeBlock.addClass('chosed');
213 212
214 //如果当前有尺码被选中,且数量等于0,则颜色块添加数量为0的样式 213 //如果当前有尺码被选中,且数量等于0,则颜色块添加数量为0的样式
215 if (curGoodNum > 0) { 214 if (curGoodNum > 0) {
@@ -80,6 +80,9 @@ @@ -80,6 +80,9 @@
80 input.disabled{ 80 input.disabled{
81 background-color:#fff; 81 background-color:#fff;
82 color: #000; 82 color: #000;
  83 + opacity: 1;
  84 + @include border-radius(0);
  85 + -webkit-appearance: none;
83 } 86 }
84 > span { 87 > span {
85 position: absolute; 88 position: absolute;
@@ -154,7 +154,7 @@ @@ -154,7 +154,7 @@
154 .vip { 154 .vip {
155 display: inline-block; 155 display: inline-block;
156 color: #fff; 156 color: #fff;
157 - background: #d1021c; 157 + background: #e01;
158 @include border-radius(16rem / $pxConvertRem); 158 @include border-radius(16rem / $pxConvertRem);
159 padding: 0rem / $pxConvertRem 12rem / $pxConvertRem; 159 padding: 0rem / $pxConvertRem 12rem / $pxConvertRem;
160 margin-left: 8rem / $pxConvertRem; 160 margin-left: 8rem / $pxConvertRem;