优化数据统计的传参以及部分展示字段以优化
This commit is contained in:
@@ -81,10 +81,10 @@
|
||||
<div>优惠券抵扣:¥{{ detail.fullCouponDiscountAmount }}</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div>满减活动:¥0.00</div>
|
||||
<div>新客立减:¥0.00</div>
|
||||
<div>限时折扣:¥0.00</div>
|
||||
<div>会员折扣:¥0.00</div>
|
||||
<div>满减活动:¥{{ detail.discountActAmount || '-' }}</div>
|
||||
<div>新客立减:¥{{ detail.newCustomerDiscountAmount || '-' }}</div>
|
||||
<!-- <div>限时折扣:¥{{ JSON.parse(detail.limitRateJson). }}</div> -->
|
||||
<div>会员折扣:¥{{ detail.vipDiscountAmount || '-' }}</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div>退单金额:¥{{ detail.refundAmount }}</div>
|
||||
@@ -134,7 +134,7 @@
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="商品">
|
||||
<el-table-column label="商品" width="150">
|
||||
<template v-slot="scope">
|
||||
<div class="shop_info">
|
||||
<el-image :src="scope.row.productImg" style="width: 40px; height: 40px"></el-image>
|
||||
@@ -143,6 +143,9 @@
|
||||
{{ scope.row.productName }}
|
||||
</span>
|
||||
<span style="color: #999">{{ scope.row.productSkuName }}</span>
|
||||
<div>
|
||||
<el-tag v-if="scope.row.isTimeDiscount" type="danger" disable-transitions>限时折扣</el-tag>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user