Authored by uedxwg

'加价购商品添加原价'

... ... @@ -111,6 +111,11 @@
.price {
font-size: 0.6rem;
color: $cartRed;
display: inline;
.sale-price{
color: #b0b0b0;
text-decoration: line-through;
}
}
.count {
... ...
... ... @@ -41,17 +41,12 @@
</p>
</div>
<p class="row">
<span class="price hide">
¥{{price}}
</span>
{{#if isAdvanceBuy}}
<p class="price">
<span class="sale-price{{^price}} no-price{{/price}}">{{salePrice}}</span>
{{#if price}}
<span class="market-price">{{price}}</span>
<span class="market-price">¥{{price}}</span>
{{#if isAdvanceBuy}}
<span class="sale-price">¥{{salesPrice}}</span>
{{/if}}
</p>
{{/if}}
{{#if isVipPrice}}
<span class="vip">
VIP
... ...