|
@@ -90,12 +90,17 @@
|
|
|
if(this.couponType == 1) { //减免金额
|
|
|
couponReduceHtml += '<span>' + (this.couponReduce / 100).toFixed(0) + '</span>元';
|
|
|
} else if(this.couponType == 2) { //减免率
|
|
|
- couponReduceHtml += '<span>' + (this.couponReduce / 100).toFixed(1) + '</span>折';
|
|
|
+ couponReduceHtml += '<span>' + (this.couponReduce / 10).toFixed(1) + '</span>折';
|
|
|
}
|
|
|
|
|
|
|
|
|
/*使用条件*/
|
|
|
- var couponConsumeEnoughHtml = '满'+(this.couponConsumeEnough / 100).toFixed(0)+'元可用'
|
|
|
+ var couponConsumeEnoughHtml = "";
|
|
|
+ if(this.couponToothbrushEnough != 0){
|
|
|
+ couponConsumeEnoughHtml += '牙刷满'+(this.couponToothbrushEnough / 100).toFixed(0)+'元可用';
|
|
|
+ }else{
|
|
|
+ couponConsumeEnoughHtml = '满'+(this.couponConsumeEnough / 100).toFixed(0)+'元可用'
|
|
|
+ }
|
|
|
if(this.couponId == 20000){
|
|
|
couponConsumeEnoughHtml = '购买刷头使用<br>可兑换“柔羽呵护”或“温和洁净”刷头1支';
|
|
|
}else if(this.couponId == 30000){
|