Authored by 陈峰

Merge branch 'hotfix/detail' into 'master'

商品详情页面不强制校验 session



See merge request !530
@@ -33,6 +33,11 @@ const _getUserProfile = (uid) => { @@ -33,6 +33,11 @@ const _getUserProfile = (uid) => {
33 uid: uid 33 uid: uid
34 }, { 34 }, {
35 cache: true 35 cache: true
  36 + }).catch(function() {
  37 + return {
  38 + code: 200,
  39 + data: {}
  40 + };
36 }); 41 });
37 }; 42 };
38 43