关键字列宽调节

This commit is contained in:
zhangsir
2023-10-19 15:21:57 +08:00
parent 23e2716342
commit 19e05a8ebc

View File

@@ -227,7 +227,7 @@ export default defineComponent({
align: "left",
ellipsis: true,
customRender: ({ text }) => {
return <a-tooltip placement="bottomLeft" title = {text} >{text? text.length>3? text.slice(0,3)+'...' : text : ''}</a-tooltip>
return <a-tooltip placement="bottomLeft" title = {text} >{text? text.length>12? text.slice(0,12)+'...' : text : ''}</a-tooltip>
},
},
{