fix: 修复销售统计列表销售金额,退款金额未展示问题
This commit is contained in:
parent
906b949879
commit
586e1d5d15
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue