Authored by hf

Merge remote-tracking branch 'origin/develop'

... ... @@ -243,6 +243,4 @@ function scrollHandler() {
}
//srcoll to load more
$(window).scroll(function() {
window.requestAnimationFrame(scrollHandler);
});
\ No newline at end of file
$(window).scroll(scrollHandler);
\ No newline at end of file
... ...
... ... @@ -72,7 +72,7 @@
width: pxToRem(472px);
height: pxToRem(88px);
line-height: pxToRem(88px);
margin: pxToRem(125px) auto 0 auto;
margin: pxToRem(80px) auto 0 auto;
background: #444;
text-align: center;
color: #fff;
... ...
... ... @@ -114,7 +114,7 @@
&.no-login {
padding: 0;
height: pxToRem(88px);
.link-item {
.link-item p {
font-size: pxToRem(32px);
line-height: pxToRem(88px);
}
... ...
... ... @@ -23,6 +23,7 @@
overflow: hidden;
}
.user-name {
float: left;
max-width: 240rem / $pxConvertRem;
text-overflow:ellipsis;
white-space:nowrap;
... ...
... ... @@ -177,7 +177,7 @@ class NewsaleController extends AbstractAction
$color = $this->get('color', null);
$size = $this->get('size', null);
$price = $this->get('price', null);
$p_d = '0.1,0.3';
$p_d = $this->get('discount', null);
$dayLimit = $this->get('dayLimit', null);
$limit = $this->get('limit', 60);
$page = $this->get('page', 1);
... ...