Authored by 陈峰

Merge branch 'feature/brandsTree' into 'release/5.4.1'

加入购物车图片放大 促销短语加空格判断



See merge request !321
@@ -26,10 +26,10 @@ const tool = { @@ -26,10 +26,10 @@ const tool = {
26 // dest.virtualGoods = (origin.attribute * 1 === 3); 26 // dest.virtualGoods = (origin.attribute * 1 === 3);
27 27
28 // 活动促销短语 28 // 活动促销短语
29 - origin.market_phrase && (dest.marketPhrase = origin.market_phrase); 29 + origin.market_phrase && origin.market_phrase !== ' ' && (dest.marketPhrase = origin.market_phrase);
30 30
31 // 商品促销短语 31 // 商品促销短语
32 - origin.sales_phrase && (dest.goodsSubtitle = origin.sales_phrase); 32 + origin.sales_phrase && origin.sales_phrase !== ' ' && (dest.goodsSubtitle = origin.sales_phrase);
33 33
34 // 商品标签 34 // 商品标签
35 if (origin.tags) { 35 if (origin.tags) {
@@ -388,4 +388,22 @@ @@ -388,4 +388,22 @@
388 .discount-gray { 388 .discount-gray {
389 background-color: #e0e0e0; 389 background-color: #e0e0e0;
390 } 390 }
  391 +
  392 + .hover {
  393 + position: fixed;
  394 + width: 100%;
  395 + background-color: black;
  396 + height: 100%;
  397 + top: 0;
  398 + left: 0;
  399 + right: 0;
  400 + border: 0;
  401 + z-index: 999;
  402 + align-items: center;
  403 + display: flex;
  404 +
  405 + img {
  406 + width: 100%;
  407 + }
  408 + }
391 } 409 }