...
|
...
|
@@ -398,7 +398,6 @@ const shop = { |
|
|
redShop(req, res, next) {
|
|
|
let shopId = req.query.shop_id; // test3 792
|
|
|
let channel = req.yoho.channel || 'boys';
|
|
|
let gender = req.query.gender;
|
|
|
let uid = req.user.uid || 0;
|
|
|
let udid = req.sessionID || 'yoho';
|
|
|
|
...
|
...
|
@@ -411,7 +410,7 @@ const shop = { |
|
|
let shopData = yield redsShopModel.getIntro(shopId);
|
|
|
let favCountData = yield redsShopModel.favCount(shopId, uid, channel, udid);
|
|
|
let decoratorsData = yield redsShopModel.getShopsdecorator(shopId);
|
|
|
let categoryData = yield redsShopModel.getShopCategory(shopId, channel, gender);
|
|
|
let categoryData = yield redsShopModel.getShopCategory(shopId, channel);
|
|
|
|
|
|
let banner = _.get(bannerData, 'data.banner');
|
|
|
let shopInfo = redShopPrcs.shopIntro(_.get(shopData, 'data', {}));
|
...
|
...
|
|