|
|
@@ -584,11 +584,11 @@ export default {
|
|
|
columns: [
|
|
|
{field: "",key: "ju",type: "checkbox",title: "",width: 50, align: "center",fixed: "left",ellipsis: {showTitle: true,},},
|
|
|
{ field: "account", key: "a", title: "账套", align: "center", width: 85,sortBy: "",ellipsis: {showTitle: true,},},
|
|
|
- { field: "orderNumber", key: "b", title: "销售订单号", align: "center",width: 180,sortBy: "",ellipsis: {showTitle: true,},
|
|
|
+ { field: "orderNumber", key: "b", title: "销售订单号", align: "center",width: 240,sortBy: "",ellipsis: {showTitle: true,},
|
|
|
renderBodyCell: ({ row, column, rowIndex }, h) => {
|
|
|
const text = row[column.field];
|
|
|
- if (text && text.length>16){
|
|
|
- return text.substring(0,16)+'...';
|
|
|
+ if (text && text.length>28){
|
|
|
+ return text.substring(0,28)+'...';
|
|
|
}
|
|
|
return text;
|
|
|
},},
|
|
|
@@ -596,7 +596,7 @@ 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: 320,sortBy: "", ellipsis: {showTitle: true},
|
|
|
+ { field: "inventoryName", key: "g", title: "存货名称", align: "center", width: 350,sortBy: "", ellipsis: {showTitle: true},
|
|
|
renderBodyCell: ({ row, column, rowIndex }, h) => {
|
|
|
const text = row[column.field];
|
|
|
if (text && text.length>30){
|