|
@@ -11,9 +11,9 @@
|
|
<div class="tit">
|
|
<div class="tit">
|
|
{{ $t("page.views.shops.details.product.price") }} :
|
|
{{ $t("page.views.shops.details.product.price") }} :
|
|
</div>
|
|
</div>
|
|
- <div class="amount fl"><span>¥</span>{{ product.price }}</div>
|
|
|
|
|
|
+ <div class="amount fl"><span>¥ </span>{{ product.price }}</div>
|
|
</div>
|
|
</div>
|
|
- <div class="row">
|
|
|
|
|
|
+ <div class="row" v-if="product.goodsSizes && product.goodsSizes.length">
|
|
<div class="tit">
|
|
<div class="tit">
|
|
{{ $t("page.views.shops.details.product.specifications") }} :
|
|
{{ $t("page.views.shops.details.product.specifications") }} :
|
|
</div>
|
|
</div>
|
|
@@ -28,7 +28,10 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div class="row">
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="row"
|
|
|
|
+ v-if="product.goodsColors && product.goodsColors.length"
|
|
|
|
+ >
|
|
<div class="tit">
|
|
<div class="tit">
|
|
{{ $t("page.views.shops.details.product.color") }} :
|
|
{{ $t("page.views.shops.details.product.color") }} :
|
|
</div>
|
|
</div>
|
|
@@ -80,7 +83,7 @@
|
|
<div class="item">
|
|
<div class="item">
|
|
{{
|
|
{{
|
|
$t("page.views.shops.details.product.commoditySpecifications")
|
|
$t("page.views.shops.details.product.commoditySpecifications")
|
|
- }}:{{ sizes }}{{ sizes }}
|
|
|
|
|
|
+ }}:{{ sizes }}
|
|
</div>
|
|
</div>
|
|
<div class="item">
|
|
<div class="item">
|
|
{{ $t("page.views.shops.details.product.distributionMode") }}:{{
|
|
{{ $t("page.views.shops.details.product.distributionMode") }}:{{
|
|
@@ -156,6 +159,8 @@ export default class extends Vue {
|
|
.info {
|
|
.info {
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
padding: 20px 30px;
|
|
padding: 20px 30px;
|
|
|
|
+ width: 760px;
|
|
|
|
+ box-sizing: border-box;
|
|
.title {
|
|
.title {
|
|
font-size: 16px;
|
|
font-size: 16px;
|
|
color: rgb(51, 51, 51);
|
|
color: rgb(51, 51, 51);
|
|
@@ -164,7 +169,7 @@ export default class extends Vue {
|
|
.desc {
|
|
.desc {
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
color: rgb(102, 102, 102);
|
|
color: rgb(102, 102, 102);
|
|
- margin-bottom: 20px;
|
|
|
|
|
|
+ margin-bottom: 30px;
|
|
}
|
|
}
|
|
.amount {
|
|
.amount {
|
|
color: rgb(253, 85, 34);
|
|
color: rgb(253, 85, 34);
|
|
@@ -174,14 +179,14 @@ export default class extends Vue {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.row {
|
|
.row {
|
|
- margin-bottom: 10px;
|
|
|
|
|
|
+ margin-bottom: 20px;
|
|
width: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
|
+ // margin-top: 10px;
|
|
.tit {
|
|
.tit {
|
|
color: rgb(102, 102, 102);
|
|
color: rgb(102, 102, 102);
|
|
margin-right: 15px;
|
|
margin-right: 15px;
|
|
float: left;
|
|
float: left;
|
|
- margin-top: 10px;
|
|
|
|
}
|
|
}
|
|
.items {
|
|
.items {
|
|
overflow: hidden;
|
|
overflow: hidden;
|