...
|
...
|
@@ -14,8 +14,8 @@ |
|
|
<h2 class="card-label-desc" v-if="item.product_name1">
|
|
|
<a v-good-href="item" class="line-clamp-1">{{item.product_name}}</a>
|
|
|
</h2>
|
|
|
<span class="good-price" :class="{'sale-price': item.market_price}">¥ {{item.sales_price | toFixed}}</span>
|
|
|
<span class="good-price" :class="{'old-price': item.market_price}" v-if="item.market_price">¥ {{item.market_price | toFixed}}</span>
|
|
|
<span class="good-price" :class="{'sale-price': item.market_price}">¥{{item.sales_price | toFixed}}</span>
|
|
|
<span class="good-price" :class="{'old-price': item.market_price}" v-if="item.market_price">¥{{item.market_price | toFixed}}</span>
|
|
|
</div>
|
|
|
</li>
|
|
|
</ul>
|
...
|
...
|
@@ -106,6 +106,7 @@ |
|
|
min-height: 180px;
|
|
|
padding-top: 40px;
|
|
|
font-size: 0;
|
|
|
font-family: "BrownStd", "PingFang SC", Helvetica, Roboto, "Heiti SC", "\9ED1\4F53", Arial;
|
|
|
}
|
|
|
|
|
|
.card-label {
|
...
|
...
|
|