...
|
...
|
@@ -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) {
|
...
|
...
|
|