@@ -89,7 +89,7 @@ export default {
},
stateFormat(row, column, cellValue) {
if (!cellValue) return ''
- if (cellValue.length > 10) { //最长固定显示10个字符
+ if (cellValue.length > 15) { //最长固定显示10个字符
return cellValue.slice(0, 15) + '...'
}
return cellValue