Authored by shuaiguo

Merge remote-tracking branch 'refs/remotes/origin/release/6.9.22' into hotfix/sub-domain

@@ -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 });
1 { 1 {
2 "name": "yohobuywap-node", 2 "name": "yohobuywap-node",
3 - "version": "6.12.1", 3 + "version": "6.12.2",
4 "private": true, 4 "private": true,
5 "description": "A New Yohobuy Project With Express", 5 "description": "A New Yohobuy Project With Express",
6 "repository": { 6 "repository": {