1
This commit is contained in:
@@ -70,6 +70,22 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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="distributionMark" width="80"/>
|
||||||
<el-table-column label="型号" prop="modelNumber" width="180"/>
|
<el-table-column label="型号" prop="modelNumber" width="180"/>
|
||||||
<el-table-column label="地址" prop="address" min-width="320">
|
<el-table-column label="地址" prop="address" min-width="320">
|
||||||
@@ -94,6 +110,9 @@
|
|||||||
<el-table-column label="后返金额" prop="rebateAmount" width="120">
|
<el-table-column label="后返金额" prop="rebateAmount" width="120">
|
||||||
<template slot-scope="scope">{{ toYuan(scope.row.rebateAmount) }}</template>
|
<template slot-scope="scope">{{ toYuan(scope.row.rebateAmount) }}</template>
|
||||||
</el-table-column>
|
</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="buyer" width="140"/>
|
||||||
<el-table-column label="备注/状态" prop="status" min-width="160"/>
|
<el-table-column label="备注/状态" prop="status" min-width="160"/>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user