|
@@ -165,6 +165,18 @@
|
|
|
type="index"
|
|
|
show-overflow-tooltip
|
|
|
></el-table-column>
|
|
|
+ <el-table-column align="left" label="客户编码" prop="customerCode" min-width="160" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <CopyButton :copyText="scope.row.customerCode" />
|
|
|
+ <span>{{ scope.row.customerCode }}</span>
|
|
|
+ </template>
|
|
|
+ </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="单据日期"
|