Authored by yyq

Merge branch 'feature/tdk313' of git.yoho.cn:fe/yohobuy-node into feature/tdk313

@@ -294,7 +294,8 @@ exports.getSearchLessProduct = (channelNum, uid, udid, page) => { @@ -294,7 +294,8 @@ exports.getSearchLessProduct = (channelNum, uid, udid, page) => {
294 img: it.default_images ? helpers.image(it.default_images, 180, 240) : '', 294 img: it.default_images ? helpers.image(it.default_images, 180, 240) : '',
295 alt: it.product_name, 295 alt: it.product_name,
296 price: '¥' + transPrice(it.sales_price), 296 price: '¥' + transPrice(it.sales_price),
297 - marketPrice: '¥' + transPrice(it.market_price) 297 + marketPrice: transPrice(it.market_price) === transPrice(it.sales_price)
  298 + ? false : ('¥' + transPrice(it.market_price))
298 }; 299 };
299 300
300 let firstGoods = it.goods_list && it.goods_list[0]; 301 let firstGoods = it.goods_list && it.goods_list[0];
1 .search-suggest-less{ 1 .search-suggest-less{
2 box-sizing: border-box; 2 box-sizing: border-box;
3 width: 100%; 3 width: 100%;
4 - height: 42px;  
5 - line-height: 42px; 4 + line-height: 22px;
6 background-color: #f5f5f5; 5 background-color: #f5f5f5;
7 color: #000; 6 color: #000;
  7 + font-size: 16px;
  8 + padding-top: 10px;
  9 + padding-bottom: 10px;
8 padding-left: 9px; 10 padding-left: 9px;
9 margin-bottom: 10px; 11 margin-bottom: 10px;
10 em { 12 em {