Authored by biao

修复问题:1.限购商品购买数量不可选。2.“即将开售”改为“即将发售”。3.限购码获取按钮灰色时点击背景不变色

@@ -49,6 +49,16 @@ var limitProductCode, @@ -49,6 +49,16 @@ var limitProductCode,
49 // 限购商品的skn。只有限购商品时才会设置。 49 // 限购商品的skn。只有限购商品时才会设置。
50 skn; 50 skn;
51 51
  52 +//禁用数字编辑
  53 +function disableNumEdit() {
  54 + var $numBtn = $('.chose-panel').find('.num .btn>.iconfont');
  55 +
  56 + //添加disabled样式
  57 + $numBtn.hasClass('disabled') ? null : $numBtn.addClass('disabled');
  58 +
  59 + $yohoPage.off('touchstart', '.btn-minus');
  60 + $yohoPage.off('touchstart', '.btn-plus');
  61 +}
52 62
53 // 初始化购物车面板显示 63 // 初始化购物车面板显示
54 function init() { 64 function init() {
@@ -94,6 +104,7 @@ function setEditModeWithSknId(sknId, isThisGoodSelected) { @@ -94,6 +104,7 @@ function setEditModeWithSknId(sknId, isThisGoodSelected) {
94 * @return {undefined} 104 * @return {undefined}
95 */ 105 */
96 function setLimitGoodModeWithSknId(code, sknId) { 106 function setLimitGoodModeWithSknId(code, sknId) {
  107 + disableNumEdit();
97 $('#chose-btn-sure').html('立即购买'); 108 $('#chose-btn-sure').html('立即购买');
98 limitProductCode = code; 109 limitProductCode = code;
99 skn = sknId; 110 skn = sknId;
@@ -127,16 +138,6 @@ function checkColorSizeNum() { @@ -127,16 +138,6 @@ function checkColorSizeNum() {
127 return true; 138 return true;
128 } 139 }
129 140
130 -//禁用数字编辑  
131 -function disableNumEdit() {  
132 - var $numBtn = $('.chose-panel').find('.num .btn>.iconfont');  
133 -  
134 - //添加disabled样式  
135 - $numBtn.hasClass('disabled') ? null : $numBtn.addClass('disabled');  
136 -  
137 - $yohoPage.off('touchstart', '.btn-minus');  
138 - $yohoPage.off('touchstart', '.btn-plus');  
139 -}  
140 141
141 142
142 function show(html, cb) { 143 function show(html, cb) {
@@ -299,7 +299,7 @@ $basicBtnC:#eb0313; @@ -299,7 +299,7 @@ $basicBtnC:#eb0313;
299 font-weight: bold; 299 font-weight: bold;
300 } 300 }
301 301
302 - .limit-sale:active { 302 + .limit-sale:not(.got-limit-sale):active {
303 background-color: #f0f0f0; 303 background-color: #f0f0f0;
304 } 304 }
305 305
@@ -148,7 +148,7 @@ @@ -148,7 +148,7 @@
148 {{/if}} 148 {{/if}}
149 149
150 {{#if limitNotForSale}} 150 {{#if limitNotForSale}}
151 - <a href="javascript:;" class="sold-out limit">即将售</a> 151 + <a href="javascript:;" class="sold-out limit">即将售</a>
152 {{/if}} 152 {{/if}}
153 153
154 {{#if canBuyLimit}} 154 {{#if canBuyLimit}}