...
|
...
|
@@ -80,30 +80,30 @@ class SearchData |
|
|
return 'http://192.168.102.216:8087/yohosearch/search.json';
|
|
|
case 'testing':
|
|
|
if ($type == 'sort') {
|
|
|
return 'http://10.66.100.4:8080/yohosearch/sortgroup.json';
|
|
|
return 'http://testing.yohoops.org/yohosearch/sortgroup.json';
|
|
|
}
|
|
|
elseif ($type == 'discount') {
|
|
|
return 'http://10.66.100.4:8080/yohosearch/discount.json';
|
|
|
return 'http://testing.yohoops.org/yohosearch/discount.json';
|
|
|
}
|
|
|
elseif ($type == 'recent') {
|
|
|
return 'http://10.66.100.4:8080/yohosearch/recent.json';
|
|
|
return 'http://testing.yohoops.org/yohosearch/recent.json';
|
|
|
}
|
|
|
elseif ($type == 'suggest') {
|
|
|
return 'http://10.66.100.4:8080/yohosearch/suggest.json';
|
|
|
return 'http://testing.yohoops.org/yohosearch/suggest.json';
|
|
|
}
|
|
|
else if($type == 'new-shelve') {
|
|
|
return 'http://10.66.100.4:8080/yohosearch/new-shelve.json';
|
|
|
return 'http://testing.yohoops.org/yohosearch/new-shelve.json';
|
|
|
}
|
|
|
elseif ($type == 'shop') {
|
|
|
return 'http://10.66.100.4:8080/yohosearch/shops.json';
|
|
|
return 'http://testing.yohoops.org/yohosearch/shops.json';
|
|
|
}
|
|
|
elseif ($type == 'search') {
|
|
|
return 'http://10.66.100.4:8080/yohosearch/search.json';
|
|
|
return 'http://testing.yohoops.org/yohosearch/search.json';
|
|
|
}
|
|
|
elseif ($type == 'brand') {
|
|
|
return 'http://10.66.100.4:8080/yohosearch/brand/list.json';
|
|
|
return 'http://testing.yohoops.org/yohosearch/brand/list.json';
|
|
|
}
|
|
|
return 'http://10.66.100.4:8080/yohosearch/search.json';
|
|
|
return 'http://testing.yohoops.org/yohosearch/search.json';
|
|
|
case 'developer':
|
|
|
default:
|
|
|
if ($type == 'sort') {
|
...
|
...
|
@@ -594,4 +594,18 @@ class SearchData |
|
|
{
|
|
|
return Yohobuy::get(self::getUrl(), $param);
|
|
|
}
|
|
|
/**
|
|
|
* 根据品牌id查询店铺列表接口
|
|
|
* @param type array $param
|
|
|
* @return type []
|
|
|
*/
|
|
|
public static function getQueryShopsByBrandId($brandId)
|
|
|
{
|
|
|
$param = Yohobuy::param();
|
|
|
$param['method'] = 'app.shop.queryShopsByBrandId';
|
|
|
$param['brand_id'] = $brandId;
|
|
|
$param['client_secret'] = Sign::getSign($param);
|
|
|
|
|
|
return Yohobuy::get(Yohobuy::API_URL, $param);
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|