Showing
1 changed file
with
1 additions
and
1 deletions
@@ -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 | }); |
-
Please register or login to post a comment