Authored by hf

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

@@ -6,16 +6,6 @@ @@ -6,16 +6,6 @@
6 // border-bottom: 1px solid #ccc; 6 // border-bottom: 1px solid #ccc;
7 margin-top: 30rem / $pxConvertRem; 7 margin-top: 30rem / $pxConvertRem;
8 8
9 - &:before {  
10 - content: '';  
11 - position: absolute;  
12 - border-top: 1px solid #ccc;  
13 - left: 0;  
14 - top: 80rem / $pxConvertRem;  
15 - width: 640rem / $pxConvertRem;  
16 - height: 0;  
17 - }  
18 -  
19 .title { 9 .title {
20 height: 104rem / $pxConvertRem; 10 height: 104rem / $pxConvertRem;
21 font-size: 38rem / $pxConvertRem; 11 font-size: 38rem / $pxConvertRem;
@@ -36,6 +26,15 @@ @@ -36,6 +26,15 @@
36 height: 60rem / $pxConvertRem; 26 height: 60rem / $pxConvertRem;
37 padding: 10rem / $pxConvertRem 0; 27 padding: 10rem / $pxConvertRem 0;
38 background-color: #fff; 28 background-color: #fff;
  29 + &:before {
  30 + content: '';
  31 + position: absolute;
  32 + border-top: 1px solid #ccc;
  33 + left: 0;
  34 + top: 80rem / $pxConvertRem;
  35 + width: 640rem / $pxConvertRem;
  36 + height: 0;
  37 + }
39 } 38 }
40 39
41 .maybe-like-nav-item { 40 .maybe-like-nav-item {
@@ -196,11 +196,11 @@ class NewsaleModel @@ -196,11 +196,11 @@ class NewsaleModel
196 if (USE_CACHE) { 196 if (USE_CACHE) {
197 // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据. 197 // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
198 if (empty($result)) { 198 if (empty($result)) {
199 - $result = Cache::get(CacheConfig::KEY_ACTION_PRODUCT_NEWSALE_INDEX_BOYS, 'slave'); 199 + $result = Cache::get($cacheKey, 'slave');
200 } 200 }
201 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 201 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
202 else { 202 else {
203 - Cache::set(CacheConfig::KEY_ACTION_PRODUCT_NEWSALE_INDEX_BOYS, $result); 203 + Cache::set($cacheKey, $result);
204 } 204 }
205 } 205 }
206 206