Merge remote-tracking branch 'refs/remotes/origin/release/6.9.22' into hotfix/sub-domain
Showing
2 changed files
with
10 additions
and
1 deletions
@@ -29,6 +29,15 @@ let _getProduct = function(o, type) { | @@ -29,6 +29,15 @@ let _getProduct = function(o, type) { | ||
29 | type: type || 'yoho' | 29 | type: type || 'yoho' |
30 | }; | 30 | }; |
31 | 31 | ||
32 | + if (!_.isEmpty(o.cover_info)) { | ||
33 | + let { share_content } = o.cover_info; | ||
34 | + | ||
35 | + Object.assign(res, { | ||
36 | + sales_price: share_content, | ||
37 | + salesPriceClass: 'share-price' | ||
38 | + }); | ||
39 | + } | ||
40 | + | ||
32 | plan = _.sortBy(plan, item => { | 41 | plan = _.sortBy(plan, item => { |
33 | return +item.show_begin_time; | 42 | return +item.show_begin_time; |
34 | }); | 43 | }); |
-
Please register or login to post a comment