Authored by biao

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

... ... @@ -49,6 +49,16 @@ var limitProductCode,
// 限购商品的skn。只有限购商品时才会设置。
skn;
//禁用数字编辑
function disableNumEdit() {
var $numBtn = $('.chose-panel').find('.num .btn>.iconfont');
//添加disabled样式
$numBtn.hasClass('disabled') ? null : $numBtn.addClass('disabled');
$yohoPage.off('touchstart', '.btn-minus');
$yohoPage.off('touchstart', '.btn-plus');
}
// 初始化购物车面板显示
function init() {
... ... @@ -94,6 +104,7 @@ function setEditModeWithSknId(sknId, isThisGoodSelected) {
* @return {undefined}
*/
function setLimitGoodModeWithSknId(code, sknId) {
disableNumEdit();
$('#chose-btn-sure').html('立即购买');
limitProductCode = code;
skn = sknId;
... ... @@ -127,16 +138,6 @@ function checkColorSizeNum() {
return true;
}
//禁用数字编辑
function disableNumEdit() {
var $numBtn = $('.chose-panel').find('.num .btn>.iconfont');
//添加disabled样式
$numBtn.hasClass('disabled') ? null : $numBtn.addClass('disabled');
$yohoPage.off('touchstart', '.btn-minus');
$yohoPage.off('touchstart', '.btn-plus');
}
function show(html, cb) {
... ...
... ... @@ -299,7 +299,7 @@ $basicBtnC:#eb0313;
font-weight: bold;
}
.limit-sale:active {
.limit-sale:not(.got-limit-sale):active {
background-color: #f0f0f0;
}
... ...
... ... @@ -148,7 +148,7 @@
{{/if}}
{{#if limitNotForSale}}
<a href="javascript:;" class="sold-out limit">即将售</a>
<a href="javascript:;" class="sold-out limit">即将售</a>
{{/if}}
{{#if canBuyLimit}}
... ...