Authored by 陈轩

Merge remote-tracking branch 'origin/release/5.1' into release/5.1

... ... @@ -276,7 +276,12 @@ function getMarketPrice() {
productSkn: productSkn
},
success: function(data) {
$('.previous-price').text(data.goodsPrice.previousPrice);
if (data.goodsPrice.previousPrice) {
$('.previous-price').text(data.goodsPrice.previousPrice);
} else {
$('.previous-price').text(data.goodsPrice.currentPrice);
}
}
});
}
... ...