Authored by zhangxiaoru

去除订单列表和订单详情页的VIP、学生标识

... ... @@ -36,9 +36,10 @@ const _formatOrderGoods = (orderGoods, count, haveLink, tickets) => {
size: value.size_name,
payPrice: value.real_pay_price,
salePrice: transPrice(value.sales_price) || value.good,
count: value.buy_number,
isVipPrice: value.discount_tag === 'V',
isStudebt: value.discount_tag === 'S'
count: value.buy_number
// isVipPrice: value.discount_tag === 'V',
// isStudebt: value.discount_tag === 'S'
};
if (parseInt(value.real_pay_price, 10) === parseInt(value.sales_price, 10)) {
... ...
... ... @@ -185,9 +185,10 @@ const orderDetailData = (uid, orderCode) => {
size: data.sizeName,
payPrice: data.realPayPrice,
salePrice: parseFloat(data.salesPrice).toFixed(2),
count: count,
isVipPrice: data.discountTag === 'V',
isStudebt: data.discountTag === 'S'
count: count
// isVipPrice: data.discountTag === 'V',
// isStudebt: data.discountTag === 'S'
});
if (parseInt(data.realPayPrice, 10) === parseInt(data.salesPrice, 10)) {
... ...
... ... @@ -26,12 +26,12 @@
<span class="appear-date">上市期:{{appearDate}}</span>
{{/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">
¥{{payPrice}}
</span>
... ...
... ... @@ -306,7 +306,7 @@
.name {
font-size: 28px;
max-width: 63%;
max-width: 70%;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
... ... @@ -345,7 +345,7 @@
text-align: right;
}
.fill-text {
/* .fill-text {
padding: 0.05rem 0.2rem;
color: #fff;
font-size: 0.5rem;
... ... @@ -354,7 +354,7 @@
display: inline-block;
background-color: #e01;
height: 0.6rem;
}
} */
.price {
color: #e01;
... ...