|
@@ -124,12 +124,7 @@
|
|
|
<span>{{scope.row.refProjectName}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="机型" prop="specification" min-width="160" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- <CopyButton :copyText="scope.row.specification" />
|
|
|
- <span>{{scope.row.a}}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
+
|
|
|
<el-table-column align="left" label="经销商编码" prop="customerNumber" min-width="160" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
<CopyButton :copyText="scope.row.customerNumber" />
|
|
@@ -142,39 +137,39 @@
|
|
|
<span>{{scope.row.customerName}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="跨区厂编号" prop="refFactoryNo" min-width="260" show-overflow-tooltip>
|
|
|
+ <el-table-column align="left" label="跨区厂编号" prop="factoryNo" min-width="260" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <CopyButton :copyText="scope.row.refFactoryNo" />
|
|
|
- <span>{{scope.row.refFactoryNo}}</span>
|
|
|
+ <CopyButton :copyText="scope.row.factoryNo" />
|
|
|
+ <span>{{scope.row.factoryNo}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="产品编码" prop="customerName" min-width="260" show-overflow-tooltip>
|
|
|
+ <el-table-column align="left" label="产品编码" prop="materialOldNumber" min-width="260" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <CopyButton :copyText="scope.row.customerName" />
|
|
|
- <span>{{scope.row.customerName}}</span>
|
|
|
+ <CopyButton :copyText="scope.row.materialOldNumber" />
|
|
|
+ <span>{{scope.row.materialOldNumber}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="物料编码" prop="customerName" min-width="260" show-overflow-tooltip>
|
|
|
+ <el-table-column align="left" label="物料编码" prop="materialNumber" min-width="260" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <CopyButton :copyText="scope.row.customerName" />
|
|
|
- <span>{{scope.row.customerName}}</span>
|
|
|
+ <CopyButton :copyText="scope.row.materialNumber" />
|
|
|
+ <span>{{scope.row.materialNumber}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="产品名称" prop="customerName" min-width="260" show-overflow-tooltip>
|
|
|
+ <el-table-column align="left" label="产品名称" prop="materialName" min-width="260" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <CopyButton :copyText="scope.row.customerName" />
|
|
|
- <span>{{scope.row.customerName}}</span>
|
|
|
+ <CopyButton :copyText="scope.row.materialName" />
|
|
|
+ <span>{{scope.row.materialName}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="规格型号" prop="customerName" min-width="260" show-overflow-tooltip>
|
|
|
+ <el-table-column align="left" label="规格型号" prop="specification" min-width="260" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <CopyButton :copyText="scope.row.customerName" />
|
|
|
- <span>{{scope.row.customerName}}</span>
|
|
|
+ <CopyButton :copyText="scope.row.specification" />
|
|
|
+ <span>{{scope.row.specification}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="right" label="押金金额" prop="depositAmount" min-width="160" show-overflow-tooltip>
|
|
|
+ <el-table-column align="right" label="押金金额" prop="itemDepositAmount" min-width="160" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.depositAmount | numToFixed }}
|
|
|
+ {{ scope.row.itemDepositAmount | numToFixed }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column fixed="right" align="center" label="操作" min-width="160" show-overflow-tooltip>
|
|
@@ -428,7 +423,7 @@ export default {
|
|
|
const res = await getDepositManageList(data);
|
|
|
res.data.records.forEach((item) => {
|
|
|
item.sums1 = [];
|
|
|
- item.sums2 = ["depositAmount"];
|
|
|
+ item.sums2 = ["itemDepositAmount"];
|
|
|
});
|
|
|
this.dataList = res.data.records;
|
|
|
this.listTotal = res.data.total;
|