title: '服务启动时间',
key: 'service_start_time',
render: (h, params) => {
return h('div', [
h(
'Tooltip',
{
props: { placement: 'top' }
},
[
h(
'span',
{
style: {
display: 'inline-block',
width: (params.column._width - 36) * 0.9 + 'px',
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap'
}
},
params.row.service_start_time
),
h(
'span',
{
slot: 'content',
style: { whiteSpace: 'normal', wordBreak: 'break-all' }
},
params.row.service_start_time
? params.row.service_start_time
: '空'
)
]
)
]);
}