|
@@ -370,7 +370,7 @@ export default {
|
|
|
{
|
|
|
title: '存货名称',
|
|
|
dataIndex: 'inventoryName',
|
|
|
- width: 220,
|
|
|
+ width: 240,
|
|
|
className: 'replacecolor',
|
|
|
customRender: t => ellipsis(t),
|
|
|
ellipsis: true,
|
|
@@ -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: 220,sortBy: "", ellipsis: {showTitle: true},
|
|
|
+ { field: "inventoryName", key: "g", title: "存货名称", align: "center", width: 240,sortBy: "", ellipsis: {showTitle: true},
|
|
|
renderBodyCell: ({ row, column, rowIndex }, h) => {
|
|
|
const text = row[column.field];
|
|
|
- if (text && text.length>18){
|
|
|
- return text.substring(0,18)+'...';
|
|
|
+ if (text && text.length>15){
|
|
|
+ return text.substring(0,15)+'...';
|
|
|
}
|
|
|
return text;
|
|
|
},},
|
|
@@ -639,7 +639,7 @@ export default {
|
|
|
{ field: "customsDeclarationUnitPrice", key: "m", title: "报关单价", align: "center", width: 100,sortBy: "",ellipsis: {showTitle: true,}, },
|
|
|
{ field: "garmentFactory", key: "l", title: "成衣工厂", align: "center", width: 100,sortBy: "" ,ellipsis: {showTitle: true,},},
|
|
|
{ field: "hsCode", key: "n", title: "HScode", align: "center", width: 120,sortBy: "",ellipsis: {showTitle: true,}, },
|
|
|
- { field: "englishProductName", key: "o", title: "英文品名", align: "center", width: 150,sortBy: "",ellipsis: {showTitle: true,},
|
|
|
+ { field: "englishProductName", key: "o", title: "英文品名", align: "center", width: 180,sortBy: "",ellipsis: {showTitle: true,},
|
|
|
renderBodyCell: ({ row, column, rowIndex }, h) => {
|
|
|
const text = row[column.field];
|
|
|
if (text && text.length>15){
|