...
|
...
|
@@ -279,6 +279,12 @@ function bindCheckboxEvent() { |
|
|
$box.removeClass('will-change');
|
|
|
$box.find('.form').addClass('hide');
|
|
|
}
|
|
|
|
|
|
if ($('.will-change').length) {
|
|
|
$('.btn.disable').removeClass('disable');
|
|
|
} else {
|
|
|
$('.btn.confirm').addClass('disable');
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
}
|
...
|
...
|
@@ -333,6 +339,10 @@ function bindConfirmEvent() { |
|
|
var $imgs;
|
|
|
var imgs = [];
|
|
|
|
|
|
if ($(this).hasClass('disable')) {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
if (!validateData()) {
|
|
|
return false;
|
|
|
}
|
...
|
...
|
|