...
|
...
|
@@ -9042,8 +9042,12 @@ $shopCart.on('click', '.icon-minus, .icon-add', function() { |
|
|
// 最近浏览翻页
|
|
|
$histroy.on('click', '.pagenext, .pageprev', function() {
|
|
|
if ($(this).hasClass('pagenext')) {
|
|
|
if (pageNum !== 5) {
|
|
|
pageNum++;
|
|
|
} else {
|
|
|
pageNum = 1;
|
|
|
}
|
|
|
} else {
|
|
|
--pageNum > 0 || (pageNum = 1);
|
|
|
}
|
|
|
getTogetherProduct($histroy, '/cart/index/getRecommendProduct', {
|
...
|
...
|
@@ -16122,6 +16126,7 @@ $invoiceCheck.click(function(){ |
|
|
if ($invoiceCheck.hasClass('active')) {
|
|
|
$invoiceCheck.removeAttr('checked');
|
|
|
$invoiceCheck.removeClass('active');
|
|
|
$('.section-play .invoice-content').addClass('hide');
|
|
|
}
|
|
|
|
|
|
if ($invoiceCheck.attr('checked')) {
|
...
|
...
|
@@ -16229,12 +16234,14 @@ $eReceiptBtn.click(function(){ |
|
|
$eReceiptBtn.addClass('receipt-type-selected');
|
|
|
$paperReceiptBtn.removeClass('receipt-type-selected');
|
|
|
$('.e-receipt-desc').removeClass('hide');
|
|
|
$('.invoice-phone').removeClass('hide');
|
|
|
});
|
|
|
|
|
|
$paperReceiptBtn.click(function(){
|
|
|
$paperReceiptBtn.addClass('receipt-type-selected');
|
|
|
$eReceiptBtn.removeClass('receipt-type-selected');
|
|
|
$('.e-receipt-desc').addClass('hide');
|
|
|
$('.invoice-phone').addClass('hide');
|
|
|
});
|
|
|
|
|
|
$('.invoice-title').change(function(){
|
...
|
...
|
|