Authored by 李奇

fixed: 商品详情页优化

@@ -437,7 +437,7 @@ @@ -437,7 +437,7 @@
437 437
438 // 是否支持7天无理由退换货 438 // 是否支持7天无理由退换货
439 $.get(`/product/refundExchange/${data.product_skn}`).then(sd => { 439 $.get(`/product/refundExchange/${data.product_skn}`).then(sd => {
440 - let support = data && sd.data[data.product_skn] === 'N' ? 'Y' : 'N'; 440 + let support = sd.data[data.product_skn] === 'N' ? 'Y' : 'N';
441 441
442 this.$set(this.intro, 'supportRefundExchange', support); 442 this.$set(this.intro, 'supportRefundExchange', support);
443 }); 443 });