|
@@ -4,13 +4,19 @@
|
|
<product-imgs class="fl" :img="product.slideshow" />
|
|
<product-imgs class="fl" :img="product.slideshow" />
|
|
<div class="info fl">
|
|
<div class="info fl">
|
|
<div class="title">{{ product.name }}</div>
|
|
<div class="title">{{ product.name }}</div>
|
|
- <div class="desc">品牌认证</div>
|
|
|
|
|
|
+ <div class="desc">
|
|
|
|
+ {{ $t("page.views.shops.details.product.brandAuthentication") }}
|
|
|
|
+ </div>
|
|
<div class="row">
|
|
<div class="row">
|
|
- <div class="tit">价格 :</div>
|
|
|
|
|
|
+ <div class="tit">
|
|
|
|
+ {{ $t("page.views.shops.details.product.price") }} :
|
|
|
|
+ </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">
|
|
- <div class="tit">规格 :</div>
|
|
|
|
|
|
+ <div class="tit">
|
|
|
|
+ {{ $t("page.views.shops.details.product.specifications") }} :
|
|
|
|
+ </div>
|
|
<div class="items">
|
|
<div class="items">
|
|
<div
|
|
<div
|
|
v-for="({ size }, index) in product.goodsSizes"
|
|
v-for="({ size }, index) in product.goodsSizes"
|
|
@@ -23,7 +29,9 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="row">
|
|
- <div class="tit">颜色 :</div>
|
|
|
|
|
|
+ <div class="tit">
|
|
|
|
+ {{ $t("page.views.shops.details.product.color") }} :
|
|
|
|
+ </div>
|
|
<div class="items">
|
|
<div class="items">
|
|
<div
|
|
<div
|
|
v-for="({ id, color }, index) in product.goodsColors"
|
|
v-for="({ id, color }, index) in product.goodsColors"
|
|
@@ -37,25 +45,63 @@
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="pay" @click="showPhone = true">
|
|
<div class="pay" @click="showPhone = true">
|
|
- 联系商家
|
|
|
|
|
|
+ {{ $t("page.views.shops.details.product.contactMerchant") }}
|
|
</div>
|
|
</div>
|
|
<transition name="slide-fade">
|
|
<transition name="slide-fade">
|
|
<span v-if="showPhone" class="phone">138 388 8888</span>
|
|
<span v-if="showPhone" class="phone">138 388 8888</span>
|
|
</transition>
|
|
</transition>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div class="x-title">商品详情</div>
|
|
|
|
|
|
+ <div class="x-title">
|
|
|
|
+ {{ $t("page.views.shops.details.product.commodityDetails") }}
|
|
|
|
+ </div>
|
|
<div class="details">
|
|
<div class="details">
|
|
<div class="items">
|
|
<div class="items">
|
|
- <div class="item">商品名称:{{ product.name }}</div>
|
|
|
|
- <div class="item">商品材质:{{ product.material }}</div>
|
|
|
|
- <div class="item">商品单重:{{ product.weight }}</div>
|
|
|
|
- <div class="item">商品颜色:{{ colors }}</div>
|
|
|
|
- <div class="item">商品规格:{{ sizes }}{{ sizes }}</div>
|
|
|
|
- <div class="item">配送方式:{{ product.delivery }}</div>
|
|
|
|
- <div class="item">生产日期:{{ product.producedTime }}</div>
|
|
|
|
- <div class="item">生产地点:{{ product.producedAddress }}</div>
|
|
|
|
- <div class="item">供货仓库地址:{{ product.warehouseAddress }}</div>
|
|
|
|
|
|
+ <div class="item">
|
|
|
|
+ {{ $t("page.views.shops.details.product.tradeName") }}:{{
|
|
|
|
+ product.name
|
|
|
|
+ }}
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ {{ $t("page.views.shops.details.product.commodityMaterial") }}:{{
|
|
|
|
+ product.material
|
|
|
|
+ }}
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ {{ $t("page.views.shops.details.product.commodityWeight") }}:{{
|
|
|
|
+ product.weight
|
|
|
|
+ }}
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ {{ $t("page.views.shops.details.product.commodityColor") }}:{{
|
|
|
|
+ colors
|
|
|
|
+ }}
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ {{
|
|
|
|
+ $t("page.views.shops.details.product.commoditySpecifications")
|
|
|
|
+ }}:{{ sizes }}{{ sizes }}
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ {{ $t("page.views.shops.details.product.distributionMode") }}:{{
|
|
|
|
+ product.delivery
|
|
|
|
+ }}
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ {{ $t("page.views.shops.details.product.productionDate") }}:{{
|
|
|
|
+ product.producedTime
|
|
|
|
+ }}
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ {{ $t("page.views.shops.details.product.productionLocation") }}:{{
|
|
|
|
+ product.producedAddress
|
|
|
|
+ }}
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ {{ $t("page.views.shops.details.product.warehouseAddress") }}:{{
|
|
|
|
+ product.warehouseAddress
|
|
|
|
+ }}
|
|
|
|
+ </div>
|
|
<div
|
|
<div
|
|
class="item"
|
|
class="item"
|
|
v-for="({ attributeName: k, value: v },
|
|
v-for="({ attributeName: k, value: v },
|