Authored by Lynnic

update

... ... @@ -342,6 +342,10 @@ $basicBtnC:#eb0313;
font-size: pxToRem(47px);
color: #444;
}
&.unfavorite{
font-size: pxToRem(34px);
color:#ccc;
}
&.favorite {
font-size: pxToRem(34px);
color: $basicBtnC;
... ...
... ... @@ -113,7 +113,11 @@
{{else}}
<a href="" class="sold-out">已售罄</a>
{{/if}}
<a href="" class="favorite iconfont">&#xe605;</a>
{{#if favorite}}
<a href="" class="favorite iconfont ">&#xe605;</a>
{{else}}
<a href="" class="unfavorite iconfont ">&#xe605;</a>
{{/if}}
</div>
{{/cartInfo}}
... ...