Authored by 沈志敏

fix bug

... ... @@ -45,7 +45,7 @@ exports.getFavProductData = (uid, page, limit) => {
title: d.product_name,
price: '¥' + Number(Math.max(d.market_price, 0)).toFixed(2),
discountPrice: discountPrice,
sellOut: d.storage < 0,
sellOut: d.storage <= 0,
invalidGoods: d.status === 0
});
});
... ...
... ... @@ -167,7 +167,7 @@
width: 35px;
height: 35px;
margin-right: 15px;
margin-top: 35px;
margin-top: 50px;
background: resolve("home/fav/fav-del.png");
background-size: 100%;
}
... ...