Authored by 周少峰

Merge branch 'hotfix/cartDel' into gray

... ... @@ -66,7 +66,8 @@
{{/eq}}
</p>
</div>
<div class="product-price td {{#if linePrice}}line-margin-top{{/if}}" style="width:148px;">¥{{productPrice}}
<div class="product-price td {{#if linePrice}}line-margin-top{{/if}}" style="width:148px;">
<p class="p-product-price">¥{{productPrice}}</p>
{{#if linePrice}}
<p class="line-through">¥{{linePrice}}</p>
{{/if}}
... ...
... ... @@ -255,7 +255,7 @@ Cart = {
if (!$this.data('gift') && !$item.hasClass('tr-disabled')) {
countJSON.push({
productPrice: $item.find('.product-price').text(),
productPrice: $item.find('.product-price p.p-product-price').text(),
productTitle: $item.find('.pay-pro-info a').text(),
link: $item.find('.pay-pro-info a').attr('href'),
productNum: $item.data('productnum'),
... ...
... ... @@ -16,7 +16,7 @@ function pyStat() {
items.push({
id: $t.data('skn'),
count: $t.data('productnum'),
price: $t.find('.product-price').text()
price: $t.find('.product-price p.product-price').text()
});
}
});
... ...