Authored by 郭成尧

price-renew

... ... @@ -134,8 +134,8 @@
<span class="title">礼品卡</span>
{{# giftCards}}
<span class="count">{{leftInfo}}</span>
<span class="coupon-info pull-right">
{{rightInfo}}<i class="iconfont">&#xe614;</i>
<span class="gift-card-info pull-right">
<span id="giftCardRightInfo">{{rightInfo}}</span><i class="iconfont">&#xe614;</i>
</span>
{{/giftCards}}
</a>
... ...
... ... @@ -134,8 +134,8 @@
<span class="title">礼品卡</span>
{{# giftCards}}
<span class="count">{{leftInfo}}</span>
<span class="coupon-info pull-right">
{{rightInfo}}<i class="iconfont">&#xe614;</i>
<span class="gift-card-info pull-right">
<span id="giftCardRightInfo">{{rightInfo}}</span><i class="iconfont">&#xe614;</i>
</span>
{{/giftCards}}
</a>
... ...
... ... @@ -113,6 +113,9 @@ function orderCompute() {
$coinCheck.find('em').html('- ¥ ' + res.use_yoho_coin);
$coinCheck.find('em').show();
}
if (res.gift_card) {
$('#giftCardRightInfo').html('可以抵用¥' + res.gift_card.amount.toFixed(2));
}
$coinLi.find('.msg').html(res.yohoCoinCompute.yohoCoinMsg);
isYohoCoinClick = res.yohoCoinCompute.yohoCoinClick * 1;
$('.coin').data('yoho-coin', res.yohoCoinCompute.yohoCoin);
... ...
... ... @@ -145,6 +145,9 @@ function orderCompute() {
$coinCheck.find('em').html('- ¥ ' + res.use_yoho_coin);
$coinCheck.find('em').show();
}
if (res.gift_card) {
$('#giftCardRightInfo').html('可以抵用¥' + res.gift_card.amount.toFixed(2));
}
$coinLi.find('.msg').html(res.yohoCoinCompute.yohoCoinMsg);
isYohoCoinClick = res.yohoCoinCompute.yohoCoinClick * 1;
$('.coin').data('yoho-coin', res.yohoCoinCompute.yohoCoin);
... ...
... ... @@ -214,6 +214,9 @@ function orderCompute() {
$coinCheck.find('em').html('- ¥ ' + res.use_yoho_coin);
$coinCheck.find('em').show();
}
if (res.gift_card) {
$('#giftCardRightInfo').html('可以抵用¥' + res.gift_card.amount.toFixed(2));
}
$coinLi.find('.msg').html(res.yohoCoinCompute.yohoCoinMsg);
isYohoCoinClick = res.yohoCoinCompute.yohoCoinClick * 1;
$('.coin').data('yoho-coin', res.yohoCoinCompute.yohoCoin);
... ...