Authored by zhangxiaoru

结算页去除会员、学生标识

... ... @@ -28,12 +28,12 @@
<p class="limit">不支持7天无理由退换货</p>
{{/if}}
<p class="row price-wrap">
{{#if isVipPrice}}
{{!-- {{#if isVipPrice}}
<span class="fill-text">VIP</span>
{{/if}}
{{#if isStudebt}}
<span class="fill-text">学</span>
{{/if}}
{{/if}} --}}
<span class="price">
¥{{round price 2}}
</span>
... ...
... ... @@ -429,7 +429,7 @@
.name {
font-size: 32px;
max-width: 65%;
max-width: 70%;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
... ... @@ -458,7 +458,7 @@
text-align: right;
}
.fill-text {
/* .fill-text {
padding: 0.05rem 0.3rem;
color: #fff;
font-size: 0.625rem;
... ... @@ -466,7 +466,7 @@
border-radius: 0.75rem;
display: inline-block;
background-color: #e01;
}
} */
.price {
color: #e01;
... ...
... ... @@ -173,8 +173,9 @@ function tranformPayment(data, orderInfo, cartType, skuList, orderComputeData) {
obj.count = good.buy_number;
obj.price = good.sales_price;
obj.isLimitSkn = good.is_limit_skn === 'Y';
obj.isVipPrice = good.sales_price !== good.last_vip_price && good.discount_tag === 'V';
obj.isStudebt = good.sales_price !== good.last_vip_price && good.discount_tag === 'S';
// obj.isVipPrice = good.sales_price !== good.last_vip_price && good.discount_tag === 'V';
// obj.isStudebt = good.sales_price !== good.last_vip_price && good.discount_tag === 'S';
if (good.good_type === 'gift' && good.is_advance === 'Y') {
obj.gift = true;
... ...