|
@@ -51,29 +51,31 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<image class="goods-img" :src="commodityDetail.image" mode=""></image>
|
|
|
- <view class="price" v-if="commodityDetail.discount_price">
|
|
|
- <text style="font-size: 20rpx">折扣价</text>
|
|
|
- <text style="font-size: 18rpx">¥</text>
|
|
|
- <text style="font-size: 36rpx; font-weight: 600">{{
|
|
|
- commodityDetail.discount_price.split(".")[0]
|
|
|
- }}</text
|
|
|
- >.
|
|
|
- <text style="font-size: 18rpx">{{
|
|
|
- commodityDetail.discount_price.split(".")[1]
|
|
|
- }}</text>
|
|
|
+ <view class="title-price" style="">
|
|
|
+ <view class="price" v-if="commodityDetail.discount_price">
|
|
|
+ <text style="font-size: 20rpx">折扣价</text>
|
|
|
+ <text style="font-size: 18rpx">¥</text>
|
|
|
+ <text style="font-size: 36rpx; font-weight: 600">{{
|
|
|
+ commodityDetail.discount_price.split(".")[0]
|
|
|
+ }}</text
|
|
|
+ >.
|
|
|
+ <text style="font-size: 18rpx">{{
|
|
|
+ commodityDetail.discount_price.split(".")[1]
|
|
|
+ }}</text>
|
|
|
|
|
|
- <text
|
|
|
- style="
|
|
|
- font-size: 24rpx;
|
|
|
- color: #ccc;
|
|
|
- text-decoration-line: line-through;
|
|
|
- "
|
|
|
- >
|
|
|
- ¥{{ commodityDetail.price }}
|
|
|
- </text>
|
|
|
- </view>
|
|
|
- <view class="goods-title">
|
|
|
- {{ commodityDetail.name_cn }}
|
|
|
+ <text
|
|
|
+ style="
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: #ccc;
|
|
|
+ text-decoration-line: line-through;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ ¥{{ commodityDetail.price }}
|
|
|
+ </text>
|
|
|
+ </view>
|
|
|
+ <view class="goods-title">
|
|
|
+ {{ commodityDetail.name_cn }}
|
|
|
+ </view>
|
|
|
</view>
|
|
|
|
|
|
<view class="goods-detail" id="product-detail"> 商品详情 </view>
|
|
@@ -236,7 +238,7 @@ export default {
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.page {
|
|
|
- background-color: #fff;
|
|
|
+ //background-color: #fff;
|
|
|
padding-bottom: 150rpx;
|
|
|
margin-top: 174rpx;
|
|
|
.u-top {
|
|
@@ -283,10 +285,19 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 750rpx;
|
|
|
}
|
|
|
+ .title-price {
|
|
|
+ background-color: #fff;
|
|
|
+ width: 96%;
|
|
|
+ margin: 0 auto;
|
|
|
+ border-radius: 16rpx;
|
|
|
+ padding-bottom: 36rpx;
|
|
|
+ margin-top: 20rpx;
|
|
|
+ padding-top: 10rpx;
|
|
|
+ }
|
|
|
|
|
|
.price {
|
|
|
color: #f83224;
|
|
|
- margin-top: 36rpx;
|
|
|
+ margin-top: 6rpx;
|
|
|
padding-left: 40rpx;
|
|
|
font-weight: 600;
|
|
|
}
|
|
@@ -299,12 +310,21 @@ export default {
|
|
|
|
|
|
.goods-detail {
|
|
|
font-size: 28rpx;
|
|
|
- margin-top: 84rpx;
|
|
|
padding-left: 40rpx;
|
|
|
+ background-color: #fff;
|
|
|
+ width: 90%;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-top: 40rpx;
|
|
|
+ border-radius: 16rpx 16rpx 0 0;
|
|
|
+ padding-top: 30rpx;
|
|
|
}
|
|
|
|
|
|
.detail {
|
|
|
padding: 24rpx 20rpx;
|
|
|
+ background-color: #fff;
|
|
|
+ width: 90%;
|
|
|
+ margin: 0 auto;
|
|
|
+ border-radius: 0 0 16rpx 16rpx;
|
|
|
|
|
|
.detail-img {
|
|
|
width: 100%;
|