@@ -223,9 +223,13 @@
function add(id)
{
- goods[id].total += 1;
- get(id).find('.goods_num').val(goods[id].total);
- setTotal();
+ if (id.indexOf('_2') != -1 && id.indexOf('-') != -1) {
+
+ } else {
+ goods[id].total += 1;
+ get(id).find('.goods_num').val(goods[id].total);
+ setTotal();
+ }
}
function dec(id)