This commit is contained in:
2025-09-05 18:56:28 +08:00
parent 0a45d62278
commit 0255e5d99d

View File

@@ -39,33 +39,37 @@
<el-table :data="list" v-loading="loading" border>
<el-table-column label="ID" prop="id" width="80" />
<el-table-column label="下单时间" prop="orderTime" width="160">
<template slot-scope="scope">{{ parseTime(scope.row.orderTime) }}</template>
</el-table-column>
<el-table-column label="内部单号" prop="remark" width="160"/>
<el-table-column label="订单号" prop="orderId" width="160"/>
<el-table-column label="下单人" prop="buyer" width="140"/>
<el-table-column label="型号" prop="modelNumber" min-width="140"/>
<el-table-column label="型号" prop="modelNumber" width="180"/>
<el-table-column label="地址" prop="address" min-width="200" show-overflow-tooltip/>
<el-table-column label="付款金额" prop="paymentAmount" width="120">
<template slot-scope="scope">{{ toYuan(scope.row.paymentAmount) }}</template>
</el-table-column>
<el-table-column label="后返金额" prop="rebateAmount" width="120">
<template slot-scope="scope">{{ toYuan(scope.row.rebateAmount) }}</template>
</el-table-column>
<el-table-column label="下单人" prop="buyer" width="140"/>
<el-table-column label="备注/状态" prop="status" min-width="160"/>
<el-table-column label="地址" prop="address" min-width="200" show-overflow-tooltip/>
<el-table-column label="链接" prop="link" min-width="200">
<template slot-scope="scope">
<a v-if="scope.row.link" :href="scope.row.link" target="_blank">打开</a>
</template>
</el-table-column>
<el-table-column label="物流链接" prop="logisticsLink" min-width="160">
<el-table-column label="物流链接" prop="logisticsLink" width="160">
<template slot-scope="scope">
<a v-if="scope.row.logisticsLink" :href="scope.row.logisticsLink" target="_blank">查看物流</a>
</template>
</el-table-column>
proPriceAmount
<el-table-column label="赔付金额" prop="proPriceAmount" width="140"/>
<el-table-column label="创建时间" prop="createTime" width="160">
<template slot-scope="scope">{{ parseTime(scope.row.createTime) }}</template>
</el-table-column>
<el-table-column label="完成时间" prop="finishTime" width="160">
<template slot-scope="scope">{{ parseTime(scope.row.finishTime) }}</template>
</el-table-column>
</el-table>
<pagination