Authored by 郝肖肖

搜索端口号改成8080

... ... @@ -77,7 +77,7 @@ class SearchData
elseif ($type == 'brand') {
return 'http://192.168.10.64:8080/yohosearch/brand/list.json';
}
return 'http://192.168.102.216:8087/yohosearch/search.json';
return 'http://192.168.102.216:8080/yohosearch/search.json';
case 'testing':
if ($type == 'sort') {
return 'http://testing.yohoops.org/yohosearch/sortgroup.json';
... ... @@ -107,30 +107,30 @@ class SearchData
case 'developer':
default:
if ($type == 'sort') {
return 'http://192.168.102.216:8087/yohosearch/sortgroup.json';
return 'http://192.168.102.216:8080/yohosearch/sortgroup.json';
}
elseif ($type == 'discount') {
return 'http://192.168.102.216:8087/yohosearch/discount.json';
return 'http://192.168.102.216:8080/yohosearch/discount.json';
}
elseif ($type == 'recent') {
return 'http://192.168.102.216:8087/yohosearch/recent.json';
return 'http://192.168.102.216:8080/yohosearch/recent.json';
}
elseif ($type == 'suggest') {
return 'http://192.168.102.216:8087/yohosearch/suggest.json';
return 'http://192.168.102.216:8080/yohosearch/suggest.json';
}
else if($type == 'new-shelve') {
return 'http://192.168.102.216:8087/yohosearch/new-shelve.json';
return 'http://192.168.102.216:8080/yohosearch/new-shelve.json';
}
elseif ($type == 'shop') {
return 'http://192.168.102.216:8087/yohosearch/shops.json';
return 'http://192.168.102.216:8080/yohosearch/shops.json';
}
elseif ($type == 'search') {
return 'http://192.168.102.216:8087/yohosearch/search.json';
return 'http://192.168.102.216:8080/yohosearch/search.json';
}
elseif ($type == 'brand') {
return 'http://192.168.102.216:8087/yohosearch/brand/list.json';
return 'http://192.168.102.216:8080/yohosearch/brand/list.json';
}
return 'http://192.168.102.216:8087/yohosearch/search.json';
return 'http://192.168.102.216:8080/yohosearch/search.json';
}
}
... ...