Authored by 陈轩

fix bug

... ... @@ -70,9 +70,9 @@ const component = {
};
if (!req.user.uid) {
res.json({
res.json([{
code: 403
});
}, '']);
return;
}
... ...
... ... @@ -102,7 +102,6 @@ const getBrandShopGoodsData = params => {
return shopApi.getBrandInfoByDomain({
domain: params.domain
}).then(result => {
if (result.data) {
return shopApi.getBrandShopGoodsOriginData(Object.assign(params, {
brand: result.data.id,
... ...
... ... @@ -75,9 +75,6 @@
}, (results)=> {
const result = results[0], misc = results[1];
// if (result && result.code === 200) {
// // TODO:
// }
if (result && result.code === 403) {
// 未登录
yoho.goLogin('', () => {
... ... @@ -86,7 +83,6 @@
tip('登录失败');
});
}
tip(result.message);
if (misc && misc.code === 200) {
this.isFavorite = misc.data.isFavor === 'Y';
... ...