|
|
@ -144,12 +144,15 @@ |
|
|
|
</view> |
|
|
|
|
|
|
|
<!-- 产品详情 --> |
|
|
|
<view class="pgoods-detail"> |
|
|
|
{{info.order_child[0].data[0].list_merchant_name}} |
|
|
|
<view class="pgoods-product" v-for="(item,index) in info.order_child[0].data" :key="index" :style="{paddingBottom: item.status == 'WAIT_COMMENT' ? '107rpx' : ''}"> |
|
|
|
<view class="pgoods-detail" v-for="(fItem,fIndex) in info.order_child" :key="fIndex"> |
|
|
|
{{fItem.data[0].list_merchant_name}} |
|
|
|
<view class="pgoods-product" v-for="(item,index) in fItem.data" :key="index" :style="{paddingBottom: item.status == 'WAIT_COMMENT' ? '107rpx' : ''}"> |
|
|
|
<image :src="showImg(item.specifications_image)" mode="aspectFill" class="product-img"></image> |
|
|
|
<view class="product-content flex-column"> |
|
|
|
<view class="product-title">{{item.goods_title}}</view> |
|
|
|
<view class="product-title flex-between"> |
|
|
|
{{item.goods_title}} |
|
|
|
<span>¥{{item.money / 100}}</span> |
|
|
|
</view> |
|
|
|
<view class="product-subtitle flex-between"> |
|
|
|
{{item.specifications_name}} |
|
|
|
<span>x{{item.num}}</span> |
|
|
@ -161,13 +164,16 @@ |
|
|
|
<!-- 商品价格 --> |
|
|
|
<view class="public-price"> |
|
|
|
<view class="flex-between"> |
|
|
|
商品总额:<span>¥{{info.money / 100}}</span> |
|
|
|
商品总额:<span>¥{{fItem.total_price / 100}}</span> |
|
|
|
</view> |
|
|
|
<view class="flex-between" v-if="info.discounts"> |
|
|
|
优惠券:<span>-¥{{info.discounts / 100}}</span> |
|
|
|
<view class="flex-between"> |
|
|
|
邮费:<span>¥{{fItem.total_post_money / 100}}</span> |
|
|
|
</view> |
|
|
|
<!-- <view class="flex-between" v-if="info.discounts"> |
|
|
|
优惠券:<span>-¥{{info.discounts / 100}}</span> |
|
|
|
</view> --> |
|
|
|
<view class="flex-between"> |
|
|
|
实付金额:<span style="font-size: 35rpx;color: #C3282E;">¥{{info.pay_money / 100}}</span> |
|
|
|
实付金额:<span style="font-size: 35rpx;color: #C3282E;">¥{{(fItem.total_price + fItem.total_post_money) / 100}}</span> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|