|
@@ -113,11 +113,17 @@
|
|
|
{{ scope.row.paymentChannelName || '--' }}
|
|
{{ scope.row.paymentChannelName || '--' }}
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="金额" prop="amount" show-overflow-tooltip>
|
|
|
|
|
|
|
+ <el-table-column label="提交金额" prop="amount" show-overflow-tooltip>
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
|
|
+ <!-- 橙色 -->
|
|
|
<span style="color: #f56c6c; font-weight: bold">¥{{ scope.row.amount ? scope.row.amount.toFixed(2) : '0.00' }}</span>
|
|
<span style="color: #f56c6c; font-weight: bold">¥{{ scope.row.amount ? scope.row.amount.toFixed(2) : '0.00' }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column label="实际金额" prop="noticeAmount" show-overflow-tooltip>
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <span style="color: #f56c6c; font-weight: bold">¥{{ scope.row.noticeAmount ? scope.row.noticeAmount.toFixed(2) : '0.00' }}</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="订单状态" prop="orderStatus" show-overflow-tooltip>
|
|
<el-table-column label="订单状态" prop="orderStatus" show-overflow-tooltip>
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
<el-tag :type="orderStatusMap[scope.row.orderStatus]?.type || 'info'" size="small">
|
|
<el-tag :type="orderStatusMap[scope.row.orderStatus]?.type || 'info'" size="small">
|