优化字段

This commit is contained in:
duan
2024-06-22 14:52:19 +08:00
parent 5045f11c53
commit 72ed4be931
2 changed files with 7 additions and 2 deletions

View File

@@ -61,9 +61,14 @@
<div class="head-container">
<el-table :data="tableData.data" v-loading="tableData.loading" v-if="orderType == 1">
<el-table-column label="日期" prop="tradeDay"></el-table-column>
<el-table-column label="营业额" prop="total">
<template v-slot="scope">
{{ scope.row.total }}
</template>
</el-table-column>
<el-table-column label="销售额" prop="total">
<template v-slot="scope">
{{ scope.row.total }}
{{ scope.row.total + scope.row.refund }}
</template>
</el-table-column>
<el-table-column label="微信小程序支付" prop="wxLite">