This commit is contained in:
Leo
2025-11-15 18:09:46 +08:00
parent d25f41d147
commit 38f4664272

View File

@@ -93,27 +93,18 @@
</el-table-column> </el-table-column>
<el-table-column label="型号" prop="modelNumber" width="160" /> <el-table-column label="型号" prop="modelNumber" width="160" />
<el-table-column label="地址" prop="address" min-width="280" show-overflow-tooltip /> <el-table-column label="地址" prop="address" min-width="280" show-overflow-tooltip />
<el-table-column label="退款状态" width="100" align="center"> <el-table-column label="需要退款" width="100" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag <el-tag
:type="scope.row.isRefunded === 1 ? 'warning' : 'info'" :type="scope.row.isRefunded === 1 ? 'warning' : 'info'"
size="small" size="small"
> >
{{ scope.row.isRefunded === 1 ? '退款' : '未退款' }} {{ scope.row.isRefunded === 1 ? '需要退款' : '正常订单' }}
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="后返到账" width="100" align="center">
<template slot-scope="scope"> <el-table-column label="赔付/价保" prop="proPriceAmount" width="110" align="right">
<el-tag
:type="scope.row.isRebateReceived === 1 ? 'success' : 'info'"
size="small"
>
{{ scope.row.isRebateReceived === 1 ? '已到账' : '未到账' }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="赔付金额" prop="proPriceAmount" width="110" align="right">
<template slot-scope="scope"> <template slot-scope="scope">
{{ formatAmount(scope.row.proPriceAmount) }} {{ formatAmount(scope.row.proPriceAmount) }}
</template> </template>