Authored by zhangxiaoru

UI

... ... @@ -116,6 +116,7 @@
</script>
<style>
.resources {
background: #f6f6f6;
}
... ...
... ... @@ -3,7 +3,7 @@
{{title.name}}
<a class="more" :href="title.more_url | transformBlk">
<span v-if="title.more_name === '···'" class="icon icon-more"></span>
<span v-if="title.more_name === '···' || '···'" class="icon icon-more"></span>
<span v-else>{{{title.more_name}}}</span>
</a>
</div>
... ...
... ... @@ -191,13 +191,13 @@
<div class="control-box" v-if="isApp && isReady">
<button class="button control-button">
<span @click="yoho.goShopingCart()" style="position: relative;">
<i class="icon icon-shopbag"></i>
<span class="shopbag"></span>
<span v-if="isApp && cartCount > 0" class="badge badge-tr">{{cartCount >= 100 ? '99+': cartCount}}</span>
</span>
</button>
<button class="button control-button" @click="toggleFavorite()">
<span v-if="entity.is_collect === 'Y' " class="icon icon-focused"></span>
<span v-else class="icon icon-focus2"></span>
<span v-else class="focus"></span>
</button>
<button class="button button-solid add-to-cart"
@click="showAddToCart()"
... ... @@ -424,7 +424,7 @@
.icon {
font-size: 40px;
font-weight: 800;
font-weight: 900;
}
}
... ... @@ -440,6 +440,22 @@
width: 375px;
font-size: 28px;
}
.shopbag {
display: inline-block;
background: resolve("product/shopbag.png");
width: 42px;
background-size: 100%;
height: 47px;
}
.focus {
display: inline-block;
background: resolve("product/fav.png");
width: 45px;
background-size: 100%;
height: 43px;
}
}
.horizon-wrapper {
... ... @@ -499,8 +515,8 @@
}
.badge-tr {
margin-top: -28px;
margin-left: 6px;
margin-top: -34px;
margin-left: 5px;
width: 32px;
height: 32px;
line-height: 32px;
... ...