Authored by 王水玲

我的vip 隐藏白金会员的进度条

... ... @@ -544,7 +544,7 @@ const getOrderDetail = (uid, code) => {
detail.statusStr = statusMap[st].valueStr;
}
//取消不显示物流信息
// 取消不显示物流信息
detail.expressInfo = express;
detail.expressInfo.addressList = _convertAddress(express.express_detail, detail.create_time);
}
... ...
... ... @@ -79,9 +79,9 @@ const vipIndex = (uid)=>{
return {
curTitle: data.next_vip_title ? data.current_vip_title : '金卡会员',
nextTitle: data.next_vip_title ? data.next_vip_title : '白金会员',
nextLevel: data.next_vip_level ? data.next_vip_level : 3,
curTitle: data.current_vip_title,
nextTitle: data.next_vip_title,
nextLevel: data.next_vip_level,
curLevel: data.current_vip_level,
yearCost: Number(data.current_year_cost).toFixed(2),
totalCost: (+data.current_total_cost).toFixed(2),
... ...
... ... @@ -33,22 +33,24 @@
</div>
</div>
<p class="ps">VIP金额累计需订单成功签收满15天且无退换货</p>
<div class="amount-length">
<span class="line"></span>
<span class="line-black" style="width:{{proportion}}; {{#if hasConsume}}display: block;{{/if}}"></span>
<span class="left-r">
<i class="r-icon"></i>
{{curTitle}}
</span>
<span class="right-r">
<i class="r-icon"></i>
{{nextTitle}}
</span>
<span class="price-box">{{nextCost}}</span>
</div>
{{#unless platinum}}
<div class="amount-length">
<span class="line"></span>
<span class="line-black" style="width:{{proportion}}; {{#if hasConsume}}display: block;{{/if}}"></span>
<span class="left-r">
<i class="r-icon"></i>
{{curTitle}}
</span>
<span class="right-r">
<i class="r-icon"></i>
{{nextTitle}}
</span>
<span class="price-box">{{nextCost}}</span>
</div>
{{/unless}}
</div>
</div>
<div class="history">
<div class="history" {{#if platinum}}style="padding-top: 40px;"{{/if}}>
<div class="level">历史消费总额:
<span class="hisamout">{{totalCost}}</span>
</div>
... ...