|
@@ -4,7 +4,7 @@
|
|
<AddressSelection v-model="addressState" class="addressBox" />
|
|
<AddressSelection v-model="addressState" class="addressBox" />
|
|
|
|
|
|
<!-- 购买的商品信息 -->
|
|
<!-- 购买的商品信息 -->
|
|
- <div class="goodsListBox mb-3">
|
|
|
|
|
|
+ <v-card class="goodsListBox mb-3 pa-3">
|
|
<s-goods-item
|
|
<s-goods-item
|
|
v-for="(item, index) in state.orderInfo.items"
|
|
v-for="(item, index) in state.orderInfo.items"
|
|
:key="item.skuId"
|
|
:key="item.skuId"
|
|
@@ -13,9 +13,9 @@
|
|
:skuText="item.properties.map((property) => property.valueName).join(' ')"
|
|
:skuText="item.properties.map((property) => property.valueName).join(' ')"
|
|
:price="item.price"
|
|
:price="item.price"
|
|
:num="item.count"
|
|
:num="item.count"
|
|
- :marginTop="index ? '0' : '12'"
|
|
|
|
|
|
+ :style="{'marginTop': index ? '8px' : '0px'}"
|
|
/>
|
|
/>
|
|
- </div>
|
|
|
|
|
|
+ </v-card>
|
|
|
|
|
|
<!-- 价格信息 -->
|
|
<!-- 价格信息 -->
|
|
<div>
|
|
<div>
|
|
@@ -310,8 +310,8 @@
|
|
}
|
|
}
|
|
.goodsListBox {
|
|
.goodsListBox {
|
|
// background: linear-gradient(to bottom, #e93323 0%, #e93323 100%);
|
|
// background: linear-gradient(to bottom, #e93323 0%, #e93323 100%);
|
|
- background: linear-gradient(to bottom, var(--v-primary-base) 0%, var(--v-primary-base) 100%);
|
|
|
|
- border-radius: 1px;
|
|
|
|
|
|
+ // background: linear-gradient(to bottom, var(--v-primary-base) 0%, var(--v-primary-base) 100%);
|
|
|
|
+ border-radius: 4px;
|
|
}
|
|
}
|
|
.order-item {
|
|
.order-item {
|
|
color: #7a7a7a;
|
|
color: #7a7a7a;
|