Merge branch 'feature/reds' into release/5.6
Showing
1 changed file
with
6 additions
and
0 deletions
@@ -221,6 +221,12 @@ const shop = { | @@ -221,6 +221,12 @@ const shop = { | ||
221 | searchParam.uid = uid; | 221 | searchParam.uid = uid; |
222 | } | 222 | } |
223 | 223 | ||
224 | + /* 红人店铺直接跳转 */ | ||
225 | + if (shopInfoResult.is_red_shop) { | ||
226 | + shop.redShop(req, res, next); | ||
227 | + return false; | ||
228 | + } | ||
229 | + | ||
224 | /* 基础店铺返回程序内的跳转信号,跳转到基础店铺 */ | 230 | /* 基础店铺返回程序内的跳转信号,跳转到基础店铺 */ |
225 | if (shopInfoResult && shopInfoResult.shop_template_type) { | 231 | if (shopInfoResult && shopInfoResult.shop_template_type) { |
226 | 232 |
-
Please register or login to post a comment