Showing
5 changed files
with
9 additions
and
6 deletions
@@ -35,11 +35,11 @@ | @@ -35,11 +35,11 @@ | ||
35 | <h2 class="card-label"> | 35 | <h2 class="card-label"> |
36 | <a class="line-clamp-1">{{product_name}}</a> | 36 | <a class="line-clamp-1">{{product_name}}</a> |
37 | </h2> | 37 | </h2> |
38 | - <span class="good-price {{#if market_price}}sale-price{{/if}}">¥ {{toFixed sales_price | 38 | + <span class="good-price {{#if market_price}}sale-price{{/if}}">¥{{toFixed sales_price |
39 | 2}}</span> | 39 | 2}}</span> |
40 | {{#if market_price}} | 40 | {{#if market_price}} |
41 | <span class="good-price old-price"> | 41 | <span class="good-price old-price"> |
42 | - ¥ {{toFixed market_price 2}} | 42 | + ¥{{toFixed market_price 2}} |
43 | </span> | 43 | </span> |
44 | {{/if}} | 44 | {{/if}} |
45 | </div> | 45 | </div> |
@@ -206,7 +206,6 @@ export default { | @@ -206,7 +206,6 @@ export default { | ||
206 | 206 | ||
207 | .add-btn { | 207 | .add-btn { |
208 | background-color: #b0b0b0; | 208 | background-color: #b0b0b0; |
209 | - border-color: #b0b0b0; | ||
210 | } | 209 | } |
211 | } | 210 | } |
212 | 211 | ||
@@ -267,7 +266,6 @@ export default { | @@ -267,7 +266,6 @@ export default { | ||
267 | text-align: center; | 266 | text-align: center; |
268 | line-height: 82px; | 267 | line-height: 82px; |
269 | background-color: #000; | 268 | background-color: #000; |
270 | - border: 1px solid #7a7a7a; | ||
271 | } | 269 | } |
272 | } | 270 | } |
273 | </style> | 271 | </style> |
@@ -14,8 +14,8 @@ | @@ -14,8 +14,8 @@ | ||
14 | <h2 class="card-label-desc" v-if="item.product_name1"> | 14 | <h2 class="card-label-desc" v-if="item.product_name1"> |
15 | <a v-good-href="item" class="line-clamp-1">{{item.product_name}}</a> | 15 | <a v-good-href="item" class="line-clamp-1">{{item.product_name}}</a> |
16 | </h2> | 16 | </h2> |
17 | - <span class="good-price" :class="{'sale-price': item.market_price}">¥ {{item.sales_price | toFixed}}</span> | ||
18 | - <span class="good-price" :class="{'old-price': item.market_price}" v-if="item.market_price">¥ {{item.market_price | toFixed}}</span> | 17 | + <span class="good-price" :class="{'sale-price': item.market_price}">¥{{item.sales_price | toFixed}}</span> |
18 | + <span class="good-price" :class="{'old-price': item.market_price}" v-if="item.market_price">¥{{item.market_price | toFixed}}</span> | ||
19 | </div> | 19 | </div> |
20 | </li> | 20 | </li> |
21 | </ul> | 21 | </ul> |
@@ -106,6 +106,7 @@ | @@ -106,6 +106,7 @@ | ||
106 | min-height: 180px; | 106 | min-height: 180px; |
107 | padding-top: 40px; | 107 | padding-top: 40px; |
108 | font-size: 0; | 108 | font-size: 0; |
109 | + font-family: "BrownStd", "PingFang SC", Helvetica, Roboto, "Heiti SC", "\9ED1\4F53", Arial; | ||
109 | } | 110 | } |
110 | 111 | ||
111 | .card-label { | 112 | .card-label { |
-
Please register or login to post a comment