fix: 修复销售统计列表销售金额,退款金额未展示问题

This commit is contained in:
YeMingfei666 2025-03-19 10:11:24 +08:00
parent 906b949879
commit 586e1d5d15
1 changed files with 2 additions and 2 deletions

View File

@ -136,11 +136,11 @@
<el-table-column label="商品名称" prop="productName"></el-table-column>
<el-table-column label="销量" prop="saleCount"></el-table-column>
<el-table-column label="销售金额" prop="saleAmount">
<template v-slot="scope">{{ scope.row.salesAmount }}</template>
<template v-slot="scope">{{ scope.row.saleAmount }}</template>
</el-table-column>
<el-table-column label="退单量" prop="refundCount"></el-table-column>
<el-table-column label="退款金额" prop="refundAmount">
<template v-slot="scope">{{ scope.row.refAmount }}</template>
<template v-slot="scope">{{ scope.row.refundAmount }}</template>
</el-table-column>
</el-table>
</div>