@@ -199,8 +199,11 @@
{
var total = 0;
for (var i in goods) {
- total += 1;
+ if (goods[id].del == 1) {
+ total += 1;
+ }
}
+ //$(".totalQuantity").html(num);
$(".totalNum").html(total);
</script>