Authored by 张文文

运费不显示问题修改 review by 郭帅

... ... @@ -40,32 +40,32 @@
<span>¥{{ priceInfo.goodPrice }}</span>
</p>
<p
v-if="parseInt(priceInfo.activityCutPrice || '') > 0"
v-if="parseFloat(priceInfo.activityCutPrice || '') > 0"
class="delivery-fee"
>
<span class="label">活动优惠:</span>
<span>-¥{{ priceInfo.activityCutPrice }}</span>
</p>
<p v-if="parseInt(priceInfo.feePrice || '') > 0" class="delivery-fee">
<p v-if="parseFloat(priceInfo.feePrice || '') > 0" class="delivery-fee">
<span class="label">运费:</span>
<span>¥{{ priceInfo.feePrice }}</span>
</p>
<p
v-if="parseInt(priceInfo.couponCutPrice || '') > 0"
v-if="parseFloat(priceInfo.couponCutPrice || '') > 0"
class="delivery-fee"
>
<span class="label">优惠券:</span>
<span>-¥{{ priceInfo.couponCutPrice }}</span>
</p>
<p
v-if="parseInt(priceInfo.shippingCouponCutPrice || '') > 0"
v-if="parseFloat(priceInfo.shippingCouponCutPrice || '') > 0"
class="delivery-fee"
>
<span class="label">运费券:</span>
<span>-¥{{ priceInfo.shippingCouponCutPrice }}</span>
</p>
<p
v-if="parseInt(priceInfo.cutPromotionPrice || '') > 0"
v-if="parseFloat(priceInfo.cutPromotionPrice || '') > 0"
class="delivery-fee"
>
<span class="label">促销:</span>
... ...