This commit is contained in:
2025-11-05 20:15:59 +08:00
parent 3ea26320cc
commit df9085baa4

View File

@@ -70,6 +70,22 @@
</div>
</template>
</el-table-column>
<el-table-column label="第三方单号" prop="thirdPartyOrderNo" width="180">
<template slot-scope="scope">
<div v-if="scope.row.thirdPartyOrderNo">
<span style="margin-right: 8px;">{{ scope.row.thirdPartyOrderNo }}</span>
<el-button
type="text"
size="mini"
icon="el-icon-copy-document"
@click="copyToClipboard(scope.row.thirdPartyOrderNo)"
title="复制第三方单号"
>
复制
</el-button>
</div>
</template>
</el-table-column>
<el-table-column label="标记" prop="distributionMark" width="80"/>
<el-table-column label="型号" prop="modelNumber" width="180"/>
<el-table-column label="地址" prop="address" min-width="320">
@@ -94,6 +110,9 @@
<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="jingfenActualPrice" width="140">
<template slot-scope="scope">{{ toYuan(scope.row.jingfenActualPrice) }}</template>
</el-table-column>
<el-table-column label="下单人" prop="buyer" width="140"/>
<el-table-column label="备注/状态" prop="status" min-width="160"/>