...
|
...
|
@@ -159,18 +159,20 @@ |
|
|
</show-box>
|
|
|
|
|
|
<show-box class="brand-detail-desc">
|
|
|
<h2>品牌介绍</h2>
|
|
|
<i>DETAILS</i>
|
|
|
|
|
|
<div class="brand-detail-header">
|
|
|
<h2>品牌介绍</h2>
|
|
|
<i>DETAILS</i>
|
|
|
</div>
|
|
|
<p v-if="brand && brand.brand_intro" v-lazy-html="brand.brand_intro">
|
|
|
</p>
|
|
|
|
|
|
</show-box>
|
|
|
|
|
|
<show-box class="product-detail-desc" :is-last="true">
|
|
|
<h2>商品详情</h2>
|
|
|
<i>DETAILS</i>
|
|
|
|
|
|
<div class="product-detail-header">
|
|
|
<h2>商品详情</h2>
|
|
|
<i>DETAILS</i>
|
|
|
</div>
|
|
|
<p v-if="intro && intro.productIntroBo" v-lazy-html="intro.productIntroBo.productIntro">
|
|
|
</p>
|
|
|
|
...
|
...
|
@@ -183,13 +185,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-bold-shopbag"></i>
|
|
|
<i class="icon icon-shopbag"></i>
|
|
|
<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-focus"></span>
|
|
|
<span v-else class="icon icon-focus2"></span>
|
|
|
</button>
|
|
|
<button class="button button-solid add-to-cart"
|
|
|
@click="showAddToCart()"
|
...
|
...
|
@@ -278,7 +280,25 @@ |
|
|
}
|
|
|
}
|
|
|
|
|
|
.brand-detail-desc {
|
|
|
padding-top: 0 !important;
|
|
|
|
|
|
.brand-detail-header {
|
|
|
width: 100%;
|
|
|
height: 80px;
|
|
|
line-height: 80px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.product-detail-desc {
|
|
|
padding-top: 0 !important;
|
|
|
|
|
|
.product-detail-header {
|
|
|
width: 100%;
|
|
|
height: 80px;
|
|
|
line-height: 80px;
|
|
|
}
|
|
|
|
|
|
/* 覆盖 img width,height 属性 */
|
|
|
img {
|
|
|
width: 100% !important;
|
...
|
...
|
@@ -318,8 +338,9 @@ |
|
|
|
|
|
i.price {
|
|
|
color: #b0b0b0;
|
|
|
font-size: 32px;
|
|
|
font-size: 34px;
|
|
|
font-style: normal;
|
|
|
font-family: "BrownStd-Regular";
|
|
|
|
|
|
&.strike-through {
|
|
|
text-decoration: line-through;
|
...
|
...
|
@@ -428,6 +449,7 @@ |
|
|
line-height: 32px;
|
|
|
font-size: 18px;
|
|
|
padding: 0;
|
|
|
background-color: #000;
|
|
|
}
|
|
|
</style>
|
|
|
<script>
|
...
|
...
|
|