|
@@ -118,6 +118,7 @@ $(function(){
|
|
|
let checkArr =[];
|
|
|
$('.checkSingle').click(function(){
|
|
|
let checks = $(this).prop('checked');
|
|
|
+ let checkList = $('.shopBox .checkSingle:checked');
|
|
|
if(checks){
|
|
|
checkArr.push(checks);
|
|
|
$(this).parents('li').addClass('active')
|
|
@@ -134,7 +135,7 @@ $(function(){
|
|
|
$('.checkboxAll').prop('checked',false);
|
|
|
$('.checkboxAll').siblings('.checkImg').addClass('checkNoImg')
|
|
|
}
|
|
|
- if(checkArr.length){
|
|
|
+ if(checkList.length>0){
|
|
|
$('.orderOk').addClass('active');
|
|
|
}else{
|
|
|
$('.orderOk').removeClass('active');
|