Merge branch 'release/6.3' of git.yoho.cn:fe/yohobuywap-node into release/6.3
Showing
3 changed files
with
28 additions
and
25 deletions
@@ -43,7 +43,6 @@ | @@ -43,7 +43,6 @@ | ||
43 | text-align: center; | 43 | text-align: center; |
44 | color: #444; | 44 | color: #444; |
45 | height: 60px; | 45 | height: 60px; |
46 | - line-height: 60px; | ||
47 | } | 46 | } |
48 | 47 | ||
49 | .type { | 48 | .type { |
@@ -467,11 +466,11 @@ | @@ -467,11 +466,11 @@ | ||
467 | margin: 0 auto; | 466 | margin: 0 auto; |
468 | 467 | ||
469 | .name { | 468 | .name { |
470 | - height: 120px; | 469 | + height: auto; |
471 | } | 470 | } |
472 | 471 | ||
473 | .info { | 472 | .info { |
474 | - height: 210px; | 473 | + height: auto; |
475 | } | 474 | } |
476 | } | 475 | } |
477 | 476 |
@@ -6,36 +6,37 @@ const config = global.yoho.config; | @@ -6,36 +6,37 @@ const config = global.yoho.config; | ||
6 | */ | 6 | */ |
7 | const PARAMMAP = { | 7 | const PARAMMAP = { |
8 | ag: 'age_level', | 8 | ag: 'age_level', |
9 | - cn: 'channel', | ||
10 | - gd: 'gender', | ||
11 | - sn: 'sort_name', | 9 | + bd: 'brand', |
10 | + cc: 'coupon_code', | ||
11 | + cd: 'coupon_id', | ||
12 | ci: 'category_id', | 12 | ci: 'category_id', |
13 | - so: 'sort', | ||
14 | - ms: 'msort', | ||
15 | - mi: 'misort', | ||
16 | - tp: 'type', | ||
17 | - sz: 'size', | ||
18 | cl: 'color', | 13 | cl: 'color', |
19 | - pc: 'price', | ||
20 | - bd: 'brand', | ||
21 | - qr: 'query', | ||
22 | - lt: 'limit', | 14 | + cn: 'channel', |
15 | + fp: 'filter_poolId', | ||
16 | + gd: 'gender', | ||
23 | ld: 'limited', | 17 | ld: 'limited', |
24 | - od: 'order', | 18 | + lt: 'limit', |
19 | + mi: 'misort', | ||
20 | + ms: 'msort', | ||
25 | nw: 'new', | 21 | nw: 'new', |
22 | + od: 'order', | ||
23 | + ol: 'outlets', | ||
24 | + pc: 'price', | ||
25 | + pd: 'p_d', | ||
26 | pg: 'page', | 26 | pg: 'page', |
27 | - st: 'style', | 27 | + pm: 'promotion', |
28 | + pp: 'productPool', | ||
29 | + qr: 'query', | ||
28 | sd: 'standard', | 30 | sd: 'standard', |
29 | - si: 'specialsale_id', | 31 | + se: 'shelveTime', |
30 | sf: 'specialoffer', | 32 | sf: 'specialoffer', |
31 | - fp: 'filter_poolId', | ||
32 | - pp: 'productPool', | ||
33 | - pm: 'promotion', | ||
34 | sh: 'shop_id', | 33 | sh: 'shop_id', |
35 | - cc: 'coupon_code', | ||
36 | - cd: 'coupon_id', | ||
37 | - pd: 'p_d', | ||
38 | - ol: 'outlets' | 34 | + si: 'specialsale_id', |
35 | + sn: 'sort_name', | ||
36 | + so: 'sort', | ||
37 | + st: 'style', | ||
38 | + sz: 'size', | ||
39 | + tp: 'type' | ||
39 | }; | 40 | }; |
40 | 41 | ||
41 | /** | 42 | /** |
@@ -209,6 +209,9 @@ const getSearchParamsWithoutMethod = (params) => { | @@ -209,6 +209,9 @@ const getSearchParamsWithoutMethod = (params) => { | ||
209 | finalParams.order = 's_t_asc'; | 209 | finalParams.order = 's_t_asc'; |
210 | } | 210 | } |
211 | } | 211 | } |
212 | + if (params.shelveTime) { | ||
213 | + finalParams.shelveTime = params.shelveTime; | ||
214 | + } | ||
212 | 215 | ||
213 | return finalParams; | 216 | return finalParams; |
214 | }; | 217 | }; |
-
Please register or login to post a comment