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) => {
img: it.default_images ? helpers.image(it.default_images, 180, 240) : '',
alt: it.product_name,
price: '¥' + transPrice(it.sales_price),
marketPrice: '¥' + transPrice(it.market_price)
marketPrice: transPrice(it.market_price) === transPrice(it.sales_price)
? false : ('¥' + transPrice(it.market_price))
};
let firstGoods = it.goods_list && it.goods_list[0];
... ...
.search-suggest-less{
box-sizing: border-box;
width: 100%;
height: 42px;
line-height: 42px;
line-height: 22px;
background-color: #f5f5f5;
color: #000;
font-size: 16px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 9px;
margin-bottom: 10px;
em {
... ...