|
@@ -111,6 +111,30 @@
|
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
|
align="left"
|
|
|
+ label="发起方经销商名称"
|
|
|
+ prop="customerName"
|
|
|
+ min-width="260"
|
|
|
+ show-overflow-tooltip
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <CopyButton :copyText="scope.row.customerName" />
|
|
|
+ <span>{{ scope.row.customerName }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="left"
|
|
|
+ label="接收方经销商名称"
|
|
|
+ prop="receiverCustomerName"
|
|
|
+ min-width="260"
|
|
|
+ show-overflow-tooltip
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <CopyButton :copyText="scope.row.receiverCustomerName" />
|
|
|
+ <span>{{ scope.row.receiverCustomerName }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="left"
|
|
|
label="备注"
|
|
|
prop="remark"
|
|
|
min-width="160"
|
|
@@ -141,11 +165,15 @@ export default {
|
|
|
this.dataList = [
|
|
|
{
|
|
|
customerWalletName: this.detailList.initiatorCustomerWalletName,
|
|
|
+ customerName:this.detailList.customerName,
|
|
|
+ receiverCustomerName:this.detailList.receiverCustomerName,
|
|
|
remark: this.detailList.initiatorRemark,
|
|
|
amount: -this.detailList.initiatorAmount
|
|
|
},
|
|
|
{
|
|
|
customerWalletName: this.detailList.receiverCustomerWalletName,
|
|
|
+ customerName:this.detailList.customerName,
|
|
|
+ receiverCustomerName:this.detailList.receiverCustomerName,
|
|
|
remark: this.detailList.receiverRemark,
|
|
|
amount: this.detailList.amount,
|
|
|
allowanceAmount: this.detailList.allowanceAmount
|