Authored by 郭成尧

style-adjust

... ... @@ -134,7 +134,7 @@ const index = (params) => {
if (result[2] && result[2].data) {
Object.assign(finalResult, {
productFavoriteTotal: result[2].data.product_favorite_total
productFavoriteTotal: result[2].data.product_favorite_total || '0'
});
}
... ... @@ -146,8 +146,8 @@ const index = (params) => {
yohoCoinNum: result[3].data.yoho_coin_num,
inboxTotal: result[3].data.inbox_total,
couponNum: result[3].data.coupon_num,
brandFavoriteTotal: result[3].data.brand_favorite_total,
productBrowse: result[3].data.product_browse
brandFavoriteTotal: result[3].data.brand_favorite_total || '0',
productBrowse: result[3].data.product_browse || '0'
});
}
... ...
... ... @@ -48,8 +48,10 @@
</a>
{{/notice}}
</div>
<div class="my-order">
{{^}}
<div class="my-order my-order-top">
{{/if}}
<div class="my-order">
<a class="order-title" href="/home/orders">
我的订单
<span class="iconfont">
... ...