Authored by 郭成尧

Merge branch 'feature/reds' into release/5.6

... ... @@ -221,6 +221,12 @@ const shop = {
searchParam.uid = uid;
}
/* 红人店铺直接跳转 */
if (shopInfoResult.is_red_shop) {
shop.redShop(req, res, next);
return false;
}
/* 基础店铺返回程序内的跳转信号,跳转到基础店铺 */
if (shopInfoResult && shopInfoResult.shop_template_type) {
... ...