Authored by 陈峰

购物车bug修改

... ... @@ -129,7 +129,7 @@
</div>
<div class="opts bill ">
<div class="total">
<p class="price">总计:{{sumPrice}}&nbsp;&nbsp;({{count}}件)</p>
<p class="price">总计:¥{{sumPrice}}&nbsp;&nbsp;({{count}}件)</p>
<p class="intro">不含运费</p>
</div>
<button class="btn btn-red btn-balance">结算</button>
... ...
... ... @@ -52,7 +52,7 @@
<div class="count">x{{count}}</div>
</div>
<p class="price">
<span class="market-price">{{price}}</span>
<span class="market-price">¥{{price}}</span>
{{#if isStudents}}<span class="vip fill-text"></span>{{/if}}
{{#if isVipPrice}}<span class="vip fill-text">VIP</span>{{/if}}
</p>
... ...
... ... @@ -20,7 +20,7 @@ const formatPromotionTitle = (promo) => {
if (promo.condition_unit === 1) {
title = `差${transPrice(Math.abs(promo.condition_value))}件立享`;
} else if (promo.condition_unit === 2) {
title = `差${transPrice(Math.abs(promo.condition_value))}立享`;
title = `差¥${transPrice(Math.abs(promo.condition_value))}立享`;
}
} else {
title = '已满足';
... ...