Commit 2cafeda19188f58b44240b1431861a1f2afd82d2
1 parent
659c0190
拼团计算运费的时候 按重量要>=0
Showing
1 changed file
with
1 additions
and
1 deletions
pages/cart/cart2_pt/cart2_pt.js
... | ... | @@ -793,7 +793,7 @@ Page({ |
793 | 793 | item=item.config; |
794 | 794 | if (item == null) return o_shipping_price; |
795 | 795 | //------按重量---------- |
796 | - if (goods_weight>0) { | |
796 | + if (goods_weight>=0) { | |
797 | 797 | fw_price =parseFloat(item['money']); |
798 | 798 | if (goods_weight > item['first_weight']){ |
799 | 799 | var fw = goods_weight - item['first_weight']; | ... | ... |