...
|
...
|
@@ -156,8 +156,17 @@ function render(data) { |
|
|
}
|
|
|
|
|
|
/* tar modified 161205 量贩商品数量限制 */
|
|
|
$('#good-num').val($('#discount-buy').val());
|
|
|
$('.left-num').html('<span style="color: #e10">' + $('#promption-phrase').val() + '</span>');
|
|
|
var $discountBuy = $('#discount-buy'),
|
|
|
$promotionPhrase = $('#promotion-phrase');
|
|
|
|
|
|
if ($discountBuy.length > 0) {
|
|
|
$('#good-num').val($discountBuy.val());
|
|
|
}
|
|
|
|
|
|
if ($promotionPhrase.length > 0) {
|
|
|
$('.left-num').html('<span style="color: #e10">' + $promotionPhrase.val() + '</span>');
|
|
|
}
|
|
|
|
|
|
$('#limitNum').val(data.limit);
|
|
|
$('#promotionId').val(data.cartInfo.promotionId);
|
|
|
$('#single').val(data.single);
|
...
|
...
|
|