Authored by 梁志锋

Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop

@@ -51,13 +51,10 @@ class SearchController extends AbstractAction @@ -51,13 +51,10 @@ class SearchController extends AbstractAction
51 if (isset($condition['discount'])) { 51 if (isset($condition['discount'])) {
52 $condition['p_d'] = rawurldecode($condition['discount']); 52 $condition['p_d'] = rawurldecode($condition['discount']);
53 // unset($condition['discount']); 为了兼容js中传参的discount 53 // unset($condition['discount']); 为了兼容js中传参的discount
54 -<<<<<<< HEAD  
55 -=======  
56 } 54 }
57 // 为了兼容现在运营在用的p_d 55 // 为了兼容现在运营在用的p_d
58 if (isset($condition['p_d'])) { 56 if (isset($condition['p_d'])) {
59 $condition['discount'] = rawurldecode($condition['p_d']); 57 $condition['discount'] = rawurldecode($condition['p_d']);
60 ->>>>>>> master  
61 } 58 }
62 if (isset($condition['query'])) { 59 if (isset($condition['query'])) {
63 $condition['query'] = rawurlencode($condition['query']); 60 $condition['query'] = rawurlencode($condition['query']);
@@ -236,13 +233,10 @@ class SearchController extends AbstractAction @@ -236,13 +233,10 @@ class SearchController extends AbstractAction
236 if (isset($condition['price'])) { 233 if (isset($condition['price'])) {
237 $condition['price'] = rawurldecode($condition['price']); 234 $condition['price'] = rawurldecode($condition['price']);
238 } 235 }
239 -<<<<<<< HEAD  
240 -=======  
241 // 转义风格 236 // 转义风格
242 if (isset($condition['style'])) { 237 if (isset($condition['style'])) {
243 $condition['style'] = rawurldecode($condition['style']); 238 $condition['style'] = rawurldecode($condition['style']);
244 } 239 }
245 ->>>>>>> master  
246 // 转换折扣 240 // 转换折扣
247 if (isset($condition['discount'])) { 241 if (isset($condition['discount'])) {
248 $condition['p_d'] = rawurldecode($condition['discount']); 242 $condition['p_d'] = rawurldecode($condition['discount']);
@@ -331,13 +325,10 @@ class SearchController extends AbstractAction @@ -331,13 +325,10 @@ class SearchController extends AbstractAction
331 if (isset($condition['price'])) { 325 if (isset($condition['price'])) {
332 $condition['price'] = rawurldecode($condition['price']); 326 $condition['price'] = rawurldecode($condition['price']);
333 } 327 }
334 -<<<<<<< HEAD  
335 -=======  
336 // 转义风格 328 // 转义风格
337 if (isset($condition['style'])) { 329 if (isset($condition['style'])) {
338 $condition['style'] = rawurldecode($condition['style']); 330 $condition['style'] = rawurldecode($condition['style']);
339 } 331 }
340 ->>>>>>> master  
341 332
342 // 区别各种列表页面的筛选数据 333 // 区别各种列表页面的筛选数据
343 $data = Product\SearchModel::getFilterData($condition); 334 $data = Product\SearchModel::getFilterData($condition);
@@ -73,13 +73,10 @@ class IndexController extends AbstractAction @@ -73,13 +73,10 @@ class IndexController extends AbstractAction
73 if (isset($condition['discount'])) { 73 if (isset($condition['discount'])) {
74 $condition['p_d'] = rawurldecode($condition['discount']); 74 $condition['p_d'] = rawurldecode($condition['discount']);
75 } 75 }
76 -<<<<<<< HEAD  
77 -=======  
78 // 为了兼容现在运营在用的p_d 76 // 为了兼容现在运营在用的p_d
79 if (isset($condition['p_d'])) { 77 if (isset($condition['p_d'])) {
80 $condition['discount'] = rawurldecode($condition['p_d']); 78 $condition['discount'] = rawurldecode($condition['p_d']);
81 } 79 }
82 ->>>>>>> master  
83 // 性别参数,不传则从COOKIE获取 80 // 性别参数,不传则从COOKIE获取
84 if (!isset($condition['gender'])) { 81 if (!isset($condition['gender'])) {
85 $condition['gender'] = Helpers::getGenderByCookie(); 82 $condition['gender'] = Helpers::getGenderByCookie();
@@ -166,11 +163,6 @@ class IndexController extends AbstractAction @@ -166,11 +163,6 @@ class IndexController extends AbstractAction
166 'gender' => FILTER_DEFAULT, 163 'gender' => FILTER_DEFAULT,
167 'p_d' => FILTER_DEFAULT,), false); 164 'p_d' => FILTER_DEFAULT,), false);
168 $condition['brand'] = $brandId; 165 $condition['brand'] = $brandId;
169 -<<<<<<< HEAD  
170 -  
171 -=======  
172 -  
173 ->>>>>>> master  
174 // 转义分类 166 // 转义分类
175 if (isset($condition['sort'])) { 167 if (isset($condition['sort'])) {
176 $condition['sort'] = rawurldecode($condition['sort']); 168 $condition['sort'] = rawurldecode($condition['sort']);
@@ -203,13 +195,10 @@ class IndexController extends AbstractAction @@ -203,13 +195,10 @@ class IndexController extends AbstractAction
203 if (isset($condition['discount'])) { 195 if (isset($condition['discount'])) {
204 $condition['p_d'] = rawurldecode($condition['discount']); 196 $condition['p_d'] = rawurldecode($condition['discount']);
205 } 197 }
206 -<<<<<<< HEAD  
207 -=======  
208 // 为了兼容现在运营在用的p_d 198 // 为了兼容现在运营在用的p_d
209 if (isset($condition['p_d'])) { 199 if (isset($condition['p_d'])) {
210 $condition['discount'] = rawurldecode($condition['p_d']); 200 $condition['discount'] = rawurldecode($condition['p_d']);
211 } 201 }
212 ->>>>>>> master  
213 if ($brandId === 0) { 202 if ($brandId === 0) {
214 $condition['query'] = $domain; 203 $condition['query'] = $domain;
215 } 204 }
@@ -53,10 +53,6 @@ application.assets.path = ROOT_PATH "/assets" @@ -53,10 +53,6 @@ application.assets.path = ROOT_PATH "/assets"
53 application.version = "1.1.8" 53 application.version = "1.1.8"
54 54
55 ; 网站SEO信息 55 ; 网站SEO信息
56 -<<<<<<< HEAD  
57 application.seo.title = "Yoho!Buy有货 | 年轻人潮流购物中心" 56 application.seo.title = "Yoho!Buy有货 | 年轻人潮流购物中心"
58 -=======  
59 -application.seo.title = "Yoho!Buy有货 丨 年轻人潮流购物中心"  
60 ->>>>>>> 1483b137ec3273153d3dfa8f47aadd6b4b88fb9c  
61 application.seo.keywords = "Yoho! 有货官网,潮流志,潮流男装,潮牌,美国潮牌,日本潮牌,香港潮牌,潮牌店,新品首发,欧美潮流,全球购,代购,时尚,流行,特卖,B2C,正品,购物网站,网上购物,货到付款" 57 application.seo.keywords = "Yoho! 有货官网,潮流志,潮流男装,潮牌,美国潮牌,日本潮牌,香港潮牌,潮牌店,新品首发,欧美潮流,全球购,代购,时尚,流行,特卖,B2C,正品,购物网站,网上购物,货到付款"
62 application.seo.description = "YOHO! 有货,年轻人潮流购物中心,中国最大的潮流商品购物网站。100%品牌正品保证,支持货到付款。作为YOHO!旗下的购物平台,汇集了全球潮流时尚商品和中国最流行的商品,也是国内最大的原创文化商品平台,也是香港,台湾地区流行商品的集中地。同时包含日本、韩国等众多国外潮流品牌,带给您全新潮流购物体验。" 58 application.seo.description = "YOHO! 有货,年轻人潮流购物中心,中国最大的潮流商品购物网站。100%品牌正品保证,支持货到付款。作为YOHO!旗下的购物平台,汇集了全球潮流时尚商品和中国最流行的商品,也是国内最大的原创文化商品平台,也是香港,台湾地区流行商品的集中地。同时包含日本、韩国等众多国外潮流品牌,带给您全新潮流购物体验。"
@@ -53,10 +53,6 @@ application.assets.path = ROOT_PATH "/assets" @@ -53,10 +53,6 @@ application.assets.path = ROOT_PATH "/assets"
53 application.version = "1.1.8" 53 application.version = "1.1.8"
54 54
55 ; 网站SEO信息 55 ; 网站SEO信息
56 -<<<<<<< HEAD  
57 application.seo.title = "Yoho!Buy有货 | 年轻人潮流购物中心" 56 application.seo.title = "Yoho!Buy有货 | 年轻人潮流购物中心"
58 -=======  
59 -application.seo.title = "Yoho!Buy有货 丨 年轻人潮流购物中心"  
60 ->>>>>>> 1483b137ec3273153d3dfa8f47aadd6b4b88fb9c  
61 application.seo.keywords = "Yoho! 有货官网,潮流志,潮流男装,潮牌,美国潮牌,日本潮牌,香港潮牌,潮牌店,新品首发,欧美潮流,全球购,代购,时尚,流行,特卖,B2C,正品,购物网站,网上购物,货到付款" 57 application.seo.keywords = "Yoho! 有货官网,潮流志,潮流男装,潮牌,美国潮牌,日本潮牌,香港潮牌,潮牌店,新品首发,欧美潮流,全球购,代购,时尚,流行,特卖,B2C,正品,购物网站,网上购物,货到付款"
62 application.seo.description = "YOHO! 有货,年轻人潮流购物中心,中国最大的潮流商品购物网站。100%品牌正品保证,支持货到付款。作为YOHO!旗下的购物平台,汇集了全球潮流时尚商品和中国最流行的商品,也是国内最大的原创文化商品平台,也是香港,台湾地区流行商品的集中地。同时包含日本、韩国等众多国外潮流品牌,带给您全新潮流购物体验。" 58 application.seo.description = "YOHO! 有货,年轻人潮流购物中心,中国最大的潮流商品购物网站。100%品牌正品保证,支持货到付款。作为YOHO!旗下的购物平台,汇集了全球潮流时尚商品和中国最流行的商品,也是国内最大的原创文化商品平台,也是香港,台湾地区流行商品的集中地。同时包含日本、韩国等众多国外潮流品牌,带给您全新潮流购物体验。"
@@ -53,10 +53,6 @@ application.assets.path = ROOT_PATH "/assets" @@ -53,10 +53,6 @@ application.assets.path = ROOT_PATH "/assets"
53 application.version = "1.1.8" 53 application.version = "1.1.8"
54 54
55 ; 网站SEO信息 55 ; 网站SEO信息
56 -<<<<<<< HEAD  
57 application.seo.title = "Yoho!Buy有货 | 年轻人潮流购物中心" 56 application.seo.title = "Yoho!Buy有货 | 年轻人潮流购物中心"
58 -=======  
59 -application.seo.title = "Yoho!Buy有货 丨 年轻人潮流购物中心"  
60 ->>>>>>> 1483b137ec3273153d3dfa8f47aadd6b4b88fb9c  
61 application.seo.keywords = "Yoho! 有货官网,潮流志,潮流男装,潮牌,美国潮牌,日本潮牌,香港潮牌,潮牌店,新品首发,欧美潮流,全球购,代购,时尚,流行,特卖,B2C,正品,购物网站,网上购物,货到付款" 57 application.seo.keywords = "Yoho! 有货官网,潮流志,潮流男装,潮牌,美国潮牌,日本潮牌,香港潮牌,潮牌店,新品首发,欧美潮流,全球购,代购,时尚,流行,特卖,B2C,正品,购物网站,网上购物,货到付款"
62 application.seo.description = "YOHO! 有货,年轻人潮流购物中心,中国最大的潮流商品购物网站。100%品牌正品保证,支持货到付款。作为YOHO!旗下的购物平台,汇集了全球潮流时尚商品和中国最流行的商品,也是国内最大的原创文化商品平台,也是香港,台湾地区流行商品的集中地。同时包含日本、韩国等众多国外潮流品牌,带给您全新潮流购物体验。" 58 application.seo.description = "YOHO! 有货,年轻人潮流购物中心,中国最大的潮流商品购物网站。100%品牌正品保证,支持货到付款。作为YOHO!旗下的购物平台,汇集了全球潮流时尚商品和中国最流行的商品,也是国内最大的原创文化商品平台,也是香港,台湾地区流行商品的集中地。同时包含日本、韩国等众多国外潮流品牌,带给您全新潮流购物体验。"
@@ -53,10 +53,6 @@ application.assets.path = ROOT_PATH "/assets" @@ -53,10 +53,6 @@ application.assets.path = ROOT_PATH "/assets"
53 application.version = "1.1.8" 53 application.version = "1.1.8"
54 54
55 ; 网站SEO信息 55 ; 网站SEO信息
56 -<<<<<<< HEAD  
57 application.seo.title = "Yoho!Buy有货 | 年轻人潮流购物中心" 56 application.seo.title = "Yoho!Buy有货 | 年轻人潮流购物中心"
58 -=======  
59 -application.seo.title = "Yoho!Buy有货 丨 年轻人潮流购物中心"  
60 ->>>>>>> 1483b137ec3273153d3dfa8f47aadd6b4b88fb9c  
61 application.seo.keywords = "Yoho! 有货官网,潮流志,潮流男装,潮牌,美国潮牌,日本潮牌,香港潮牌,潮牌店,新品首发,欧美潮流,全球购,代购,时尚,流行,特卖,B2C,正品,购物网站,网上购物,货到付款" 57 application.seo.keywords = "Yoho! 有货官网,潮流志,潮流男装,潮牌,美国潮牌,日本潮牌,香港潮牌,潮牌店,新品首发,欧美潮流,全球购,代购,时尚,流行,特卖,B2C,正品,购物网站,网上购物,货到付款"
62 application.seo.description = "YOHO! 有货,年轻人潮流购物中心,中国最大的潮流商品购物网站。100%品牌正品保证,支持货到付款。作为YOHO!旗下的购物平台,汇集了全球潮流时尚商品和中国最流行的商品,也是国内最大的原创文化商品平台,也是香港,台湾地区流行商品的集中地。同时包含日本、韩国等众多国外潮流品牌,带给您全新潮流购物体验。" 58 application.seo.description = "YOHO! 有货,年轻人潮流购物中心,中国最大的潮流商品购物网站。100%品牌正品保证,支持货到付款。作为YOHO!旗下的购物平台,汇集了全球潮流时尚商品和中国最流行的商品,也是国内最大的原创文化商品平台,也是香港,台湾地区流行商品的集中地。同时包含日本、韩国等众多国外潮流品牌,带给您全新潮流购物体验。"