Authored by 周少峰

Merge branch 'hotfix/shop'

@@ -420,7 +420,7 @@ const getShopAbout = (shopId, uid, channel) => { @@ -420,7 +420,7 @@ const getShopAbout = (shopId, uid, channel) => {
420 420
421 if (result[1].code === 200) { 421 if (result[1].code === 200) {
422 let data = result[1].data || {}, 422 let data = result[1].data || {},
423 - decorator = shopHandler.getShopDecorator(data, {}, shopId); 423 + decorator = shopHandler.getShopDecorator(data, {}, shopId, true);
424 424
425 Object.assign(decorator.shopTopBannerBase, { 425 Object.assign(decorator.shopTopBannerBase, {
426 shopId: shopId, 426 shopId: shopId,
@@ -797,6 +797,9 @@ const getShopListData = (channel, params, uid) => { @@ -797,6 +797,9 @@ const getShopListData = (channel, params, uid) => {
797 }), 797 }),
798 footPager: {tip: tip} 798 footPager: {tip: tip}
799 }); 799 });
  800 +
  801 + _.set(finalResult, 'filters.checkedConditions.clearUrl',
  802 + `?navBar=${params.navBar}&shopId=${params.shopId}`);
800 } else { 803 } else {
801 finalResult.searchEmpty = true; 804 finalResult.searchEmpty = true;
802 805