diff --git a/buyer/src/components/goodsDetail/ShowGoods.vue b/buyer/src/components/goodsDetail/ShowGoods.vue index 1ad574a4..d2c9c86a 100644 --- a/buyer/src/components/goodsDetail/ShowGoods.vue +++ b/buyer/src/components/goodsDetail/ShowGoods.vue @@ -19,7 +19,11 @@
- {{isCollected?'已收藏':'收藏'}} + {{ + isCollected ? "已收藏" : "收藏" + }}
@@ -30,10 +34,13 @@

- {{skuDetail.sellingPoint}} + {{ skuDetail.sellingPoint }}
- +
@@ -41,19 +48,25 @@

价     格 - {{skuDetail.price | unitPrice("¥")}} + {{ skuDetail.price | unitPrice("¥") }}

- 秒  杀 价 - {{skuDetail.promotionPrice | unitPrice("¥")}} - {{skuDetail.price | unitPrice("¥")}} + 秒  杀 价 + {{ + skuDetail.promotionPrice | unitPrice("¥") + }} + {{ + skuDetail.price | unitPrice("¥") + }}

-
+

优 惠 券 + 满{{ item.consumeThreshold }}减{{ item.price }} - 满{{ item.consumeThreshold }}减{{item.price}} - 满{{ item.consumeThreshold }}打{{item.couponDiscount}}折 - + 满{{ item.consumeThreshold }}打{{ item.couponDiscount }}折 +

@@ -72,8 +89,20 @@

促     销 满减 - 满{{ promotionMap['FULL_DISCOUNT'].fullMoney }}元,立减现金{{ promotionMap['FULL_DISCOUNT'].fullMinus}}元 - 满{{ promotionMap['FULL_DISCOUNT'].fullMoney }}元,立享{{ promotionMap['FULL_DISCOUNT'].fullRate}}折 + 满{{ promotionMap["FULL_DISCOUNT"].fullMoney }}元,立减现金{{ + promotionMap["FULL_DISCOUNT"].fullMinus + }}元 + 满{{ promotionMap["FULL_DISCOUNT"].fullMoney }}元,立享{{ + promotionMap["FULL_DISCOUNT"].fullRate + }}折

@@ -92,9 +121,13 @@

{{ sku.name }}

-
-
+

{{ item.value }}

@@ -110,26 +143,57 @@

数量

- - 库存{{skuDetail.quantity}} + + 库存{{ skuDetail.quantity }}
-
+

重量

- {{skuDetail.weight}}kg + {{ skuDetail.weight }}kg
-
- +
+
-
- - +
+ +
-
@@ -137,20 +201,25 @@ @@ -346,7 +439,6 @@ export default { } .inventory { padding-left: 4px; - } .global_color { @@ -597,7 +689,7 @@ export default { .add-buy-car { margin-top: 15px; - >*{ + > * { margin: 0 4px; } } @@ -607,7 +699,7 @@ export default { justify-content: space-between; > span { padding-right: 10px; - &:hover{ + &:hover { cursor: pointer; color: $theme_color; } diff --git a/buyer/src/pages/Cart.vue b/buyer/src/pages/Cart.vue index f9834a60..eac00dd7 100644 --- a/buyer/src/pages/Cart.vue +++ b/buyer/src/pages/Cart.vue @@ -4,9 +4,10 @@