Authored by Lynnic

为您优选未返回数据时外层容器隐藏 --code viewed by bikai

@@ -81,4 +81,8 @@ $.ajax({ @@ -81,4 +81,8 @@ $.ajax({
81 } 81 }
82 }); 82 });
83 83
  84 +if ($('.good-detail-page').length > 0) {
  85 + $('#yoho-footer').css('border-top', '1px solid #e0e0e0');
  86 +}
  87 +
84 require('./like'); 88 require('./like');
@@ -14,15 +14,19 @@ var recommendSwiper, @@ -14,15 +14,19 @@ var recommendSwiper,
14 14
15 if (preferenceUrl) { 15 if (preferenceUrl) {
16 $.get(preferenceUrl).then(function(html) { 16 $.get(preferenceUrl).then(function(html) {
17 - $recommendForYou.html(html).show();  
18 - if ($('#swiper-recommend').length) {  
19 - recommendSwiper = new Swiper('#swiper-recommend', {  
20 - slidesPerView: 'auto',  
21 - grabCursor: true,  
22 - slideElement: 'a',  
23 - lazyLoading: true,  
24 - watchSlidesVisibility: true  
25 - }); 17 + if (html.length < 5) {
  18 + $recommendForYou.css('display', 'none');
  19 + } else {
  20 + $recommendForYou.html(html).show();
  21 + if ($('#swiper-recommend').length) {
  22 + recommendSwiper = new Swiper('#swiper-recommend', {
  23 + slidesPerView: 'auto',
  24 + grabCursor: true,
  25 + slideElement: 'a',
  26 + lazyLoading: true,
  27 + watchSlidesVisibility: true
  28 + });
  29 + }
26 } 30 }
27 }).fail(function() { 31 }).fail(function() {
28 $recommendForYou.hide(); 32 $recommendForYou.hide();
@@ -46,7 +46,7 @@ $basicBtnC:#eb0313; @@ -46,7 +46,7 @@ $basicBtnC:#eb0313;
46 .column { 46 .column {
47 box-sizing: border-box; 47 box-sizing: border-box;
48 //padding: pxToRem(20px) pxToRem(12px); 48 //padding: pxToRem(20px) pxToRem(12px);
49 - padding: 4% 3%; 49 + padding: pxToRem(6px) 3%;
50 width: 49.9%; 50 width: 49.9%;
51 border-bottom: pxToRem(4px) solid #fff; 51 border-bottom: pxToRem(4px) solid #fff;
52 border-right: pxToRem(4px) solid #fff; 52 border-right: pxToRem(4px) solid #fff;
@@ -64,6 +64,20 @@ $basicBtnC:#eb0313; @@ -64,6 +64,20 @@ $basicBtnC:#eb0313;
64 flex-basis: 49.9% 64 flex-basis: 49.9%
65 )) 65 ))
66 } 66 }
  67 + .oldbox{
  68 + padding: pxToRem(6px) 3%;
  69 + width: 49.9%;
  70 + background-color: $tableCellC;
  71 + box-sizing: border-box;
  72 + border-bottom: 1px solid #fff;
  73 + border-right: 1px solid #fff;
  74 + width: 49.9%;
  75 + height: 100%;
  76 + float: left;
  77 + text-overflow:ellipsis;
  78 + white-space:nowrap;
  79 + overflow:hidden;
  80 + }
67 } 81 }
68 } 82 }
69 } 83 }
@@ -390,6 +404,7 @@ $basicBtnC:#eb0313; @@ -390,6 +404,7 @@ $basicBtnC:#eb0313;
390 z-index: 2; 404 z-index: 2;
391 padding: pxToRem(20px) pxToRem(28px); 405 padding: pxToRem(20px) pxToRem(28px);
392 text-align: center; 406 text-align: center;
  407 + border-top: 1px solid $borderC;
393 a { 408 a {
394 display: inline-block; 409 display: inline-block;
395 &.num-incart { 410 &.num-incart {
@@ -435,9 +450,9 @@ $basicBtnC:#eb0313; @@ -435,9 +450,9 @@ $basicBtnC:#eb0313;
435 } 450 }
436 } 451 }
437 } 452 }
438 - // .recommend-for-you {  
439 - // margin-bottom: pxToRem(30px);  
440 - // } 453 + .recommend-for-you{
  454 + border-bottom: none;
  455 + }
441 .yoho-tip{ 456 .yoho-tip{
442 top:40%; 457 top:40%;
443 } 458 }