|
@@ -260,14 +260,18 @@
|
|
|
wechatAddr.status = false;
|
|
|
}
|
|
|
$(".count_price").text(accDiv(dt.data.payTotal,100));
|
|
|
- //var oldTotal = fullSub(dt.data.payTotal);
|
|
|
|
|
|
- $(".pay_price,.all_price").text(accDiv(fullSub(dt.data.payTotal),100));
|
|
|
+ var oldTotal = accDiv(fullSub(dt.data.payTotal),100);
|
|
|
+
|
|
|
if(accDiv(fullSub(dt.data.payTotal),100) < 30){
|
|
|
$(".sales_postage").text(10);
|
|
|
+ oldTotal = accAdd(oldTotal,10);
|
|
|
}else{
|
|
|
$(".sales_postage").text(0);
|
|
|
}
|
|
|
+
|
|
|
+ $(".pay_price,.all_price").text(oldTotal);
|
|
|
+
|
|
|
//$("#pro-count").text(proCount);
|
|
|
$(".loading").hide().css("opacity", "0"); //隐藏(正在加载...)
|
|
|
} else {
|
|
@@ -337,7 +341,7 @@
|
|
|
var otherPrice = 0;//其他商品总金额
|
|
|
var couponPrice = $(".my-picker input[name=radio]:checked").attr("val"); //优惠券金额
|
|
|
mui.each(orderItem,function(index){
|
|
|
- if(this.productType == 101 && this.cartProductId != 310 ){ //刷头类
|
|
|
+ if(this.productType == 101 && this.cartProductId != 310 && this.cartProductId != 79 && this.cartProductId != 81){ //刷头类
|
|
|
var brPrice = this.productPrice; //优惠券金额
|
|
|
if(brushCouponPrice == 0 || brushCouponPrice < brPrice){
|
|
|
brushCouponPrice = brPrice;
|
|
@@ -352,7 +356,7 @@
|
|
|
var otherPrice = 0;//其他商品总金额
|
|
|
var couponPrice = $(".my-picker input[name=radio]:checked").attr("val"); //优惠券金额
|
|
|
mui.each(orderItem,function(index){
|
|
|
- if(this.productType == 101 && this.cartProductId != 310 ){
|
|
|
+ if(this.productType == 101 && this.cartProductId != 310 && this.cartProductId != 79 && this.cartProductId != 81){
|
|
|
brushPrice = accAdd(brushPrice,this.productPrice*this.cartNum);
|
|
|
}else{
|
|
|
otherPrice = accAdd(otherPrice,this.productPrice*this.cartNum);
|