...
|
...
|
@@ -256,7 +256,7 @@ Cart = { |
|
|
if (!$this.data('gift') && !$item.hasClass('tr-disabled')) {
|
|
|
countJSON.push({
|
|
|
productPrice: $item.find('.product-price p.p-product-price').text(),
|
|
|
productTitle: $item.find('.pay-pro-info a').text(),
|
|
|
productTitle: $.trim($item.find('.pay-pro-info a').text()),
|
|
|
link: $item.find('.pay-pro-info a').attr('href'),
|
|
|
productNum: $item.data('productnum'),
|
|
|
productSku: $item.data('id'),
|
...
|
...
|
@@ -310,8 +310,8 @@ Cart = { |
|
|
});
|
|
|
|
|
|
PromotionArray.push({
|
|
|
productPrice: $item.find('.productPrice').text(),
|
|
|
productTitle: $item.find('.pay-pro-info a').text(),
|
|
|
productPrice: $item.find('.product-price p.p-product-price').text(),
|
|
|
productTitle: $.trim($item.find('.pay-pro-info a').text()),
|
|
|
link: $item.find('.pay-pro-info a').attr('href'),
|
|
|
productNum: $item.data('productnum'),
|
|
|
productSku: $item.data('id'),
|
...
|
...
|
@@ -369,8 +369,8 @@ Cart = { |
|
|
});
|
|
|
|
|
|
PromotionArray.push({
|
|
|
productPrice: $item.find('.productPrice').text(),
|
|
|
productTitle: $item.find('.pay-pro-info a').text(),
|
|
|
productPrice: $item.find('.product-price p.p-product-price').text(),
|
|
|
productTitle: $.trim($item.find('.pay-pro-info a').text()),
|
|
|
link: $item.find('.pay-pro-info a').attr('href'),
|
|
|
productNum: $item.data('productnum'),
|
|
|
productSku: $item.data('id'),
|
...
|
...
|
|