fix: 统计字段修改

This commit is contained in:
lzhizhao 2025-10-29 10:40:08 +08:00
parent d4a7810891
commit 62aa977863
1 changed files with 8 additions and 8 deletions

View File

@ -82,19 +82,19 @@
<el-col :span="6">
<div class="stat-item">
<div class="stat-label">订单金额()</div>
<div class="stat-value">¥ {{ (stats.totalMoney / 100).toFixed(2) || '0.00' }}</div>
<div class="stat-value">¥ {{ stats.totalMoney }}</div>
</div>
</el-col>
<el-col :span="6">
<div class="stat-item">
<div class="stat-label">订单完成率</div>
<div class="stat-value">{{ (stats.completeRate * 100).toFixed(2) || '0.00' }}%</div>
<div class="stat-value">{{ stats.completeRate }}%</div>
</div>
</el-col>
<el-col :span="6">
<div class="stat-item">
<div class="stat-label">代理商抽成()</div>
<div class="stat-value">¥ {{ (stats.agentCommission / 100).toFixed(2) || '0.00' }}</div>
<div class="stat-value">¥ {{ stats.agentCommission }}</div>
</div>
</el-col>
</el-row>
@ -214,27 +214,27 @@
</el-table-column>
<el-table-column label="市场订单金额" min-width="100">
<template slot-scope="scope">
<span>¥ {{ (scope.row.unitOrderMoney / 100).toFixed(2) || '0.00' }}</span>
<span>¥ {{ scope.row.unitOrderMoney }}</span>
</template>
</el-table-column>
<el-table-column label="市场订单商品金额" min-width="120">
<template slot-scope="scope">
<span>¥ {{ (scope.row.productMoney / 100).toFixed(2) || '0.00' }}</span>
<span>¥ {{ scope.row.productMoney }}</span>
</template>
</el-table-column>
<el-table-column label="市场订单配送费" min-width="110">
<template slot-scope="scope">
<span>¥ {{ (scope.row.deliveryMoney / 100).toFixed(2) || '0.00' }}</span>
<span>¥ {{ scope.row.deliveryMoney }}</span>
</template>
</el-table-column>
<el-table-column label="调度费" width="60">
<template slot-scope="scope">
<span>¥ {{ (scope.row.dispatchMoney / 100).toFixed(2) || '0.00' }}</span>
<span>¥ {{ scope.row.dispatchMoney }}</span>
</template>
</el-table-column>
<el-table-column label="包装费" width="60">
<template slot-scope="scope">
<span>¥ {{ (scope.row.packageMoney / 100).toFixed(2) || '0.00' }}</span>
<span>¥ {{ scope.row.packageMoney }}</span>
</template>
</el-table-column>
<el-table-column prop="status" label="订单状态" width="100">