|
@@ -596,11 +596,11 @@ export default {
|
|
|
{ field: "salesman", key: "d", title: "业务员", align: "center", width: 100,sortBy: "", ellipsis: {showTitle: true,},},
|
|
|
{ field: "distributionPoint", key: "e", title: "分销点", align: "center", width: 110,sortBy: "", ellipsis: {showTitle: true,},},
|
|
|
{ field: "smallPo", key: "f", title: "小po", align: "center", width: 200,sortBy: "", ellipsis: {showTitle: true,},},
|
|
|
- { field: "inventoryName", key: "g", title: "存货名称", align: "center", width: 240,sortBy: "", ellipsis: {showTitle: true},
|
|
|
+ { field: "inventoryName", key: "g", title: "存货名称", align: "center", width: 320,sortBy: "", ellipsis: {showTitle: true},
|
|
|
renderBodyCell: ({ row, column, rowIndex }, h) => {
|
|
|
const text = row[column.field];
|
|
|
- if (text && text.length>15){
|
|
|
- return text.substring(0,15)+'...';
|
|
|
+ if (text && text.length>30){
|
|
|
+ return text.substring(0,30)+'...';
|
|
|
}
|
|
|
return text;
|
|
|
},},
|