...
|
...
|
@@ -207,7 +207,7 @@ const _processBrandShops = (list) => { |
|
|
_.forEach(list, item => {
|
|
|
if (item.shop_type === 'yoho_shop') {
|
|
|
formatDat.push({
|
|
|
url: helpers.urlFormat('/product/index/brand/', {
|
|
|
url: helpers.urlFormat('/product/shop', {
|
|
|
shop_id: item.shop_id
|
|
|
}),
|
|
|
thumb: helpers.image(item.shop_logo, 126, 80),
|
...
|
...
|
@@ -269,7 +269,7 @@ const getSearchData = (params) => { |
|
|
for (let i = 0; i < result.data.rec_shop_list.length; i++) {
|
|
|
if (parseInt(result.data.rec_shop_list[i].show_type, 10) === 1) {
|
|
|
result.data.rec_shop_list[i].is_shop = true;
|
|
|
result.data.rec_shop_list[i].shopUrl = '//m.yohobuy.com/product/index/brand?domain=' +
|
|
|
result.data.rec_shop_list[i].shopUrl = '//m.yohobuy.com/product/shop?domain=' +
|
|
|
result.data.rec_shop_list[i].shop_domain;
|
|
|
newList.list.splice(parseInt(result.data.rec_shop_list[i].insert_index, 10) - 1, 0,
|
|
|
result.data.rec_shop_list[i]);
|
...
|
...
|
|