...
|
...
|
@@ -283,7 +283,8 @@ const _formShopData = (data, shopId, isApp) => { |
|
|
_.forEach(resData, (cate) => {
|
|
|
hotCategory.data.list.push({
|
|
|
url: cate.url,
|
|
|
src: helpers.image(cate.src)
|
|
|
src: helpers.image(cate.src),
|
|
|
name: cate.name
|
|
|
});
|
|
|
});
|
|
|
|
...
|
...
|
@@ -455,6 +456,9 @@ const getShopData = (req, shopId, uid, isApp) => { |
|
|
let shopData = {};
|
|
|
let channel = req.yoho.channel;
|
|
|
|
|
|
/* 变量污染临时处理 */
|
|
|
shopId = shopId.replace(/\//, '');
|
|
|
|
|
|
return _getShopInfo(shopId, uid).then(shopInfoResult => {
|
|
|
|
|
|
/* 基础店铺返回程序内的跳转信号,跳转到基础店铺 */
|
...
|
...
|
|