优化数据统计的传参以及部分展示字段以优化

This commit is contained in:
gyq
2025-11-24 16:37:49 +08:00
parent 7f76996829
commit 980f0357c1
5 changed files with 151 additions and 239 deletions

View File

@@ -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>