customFeedListColumns: [
{
type: 'selection',
width: 60,
align: 'center'
},
{
title: '名称',
key: 'name',
align: 'center',
render: (h, params) => {
return h('div', [
h('a', {
props: {
type: 'primary',
size: 'small'
},
style: {
marginRight: '5px',
color: 'rgb(46, 86, 175)',
fontSize: '13px',
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
display: 'block' //设置样式,超过文字省略号显示
//cursor: 'auto' //设置鼠标样式
},
on: {
click: () => {
if ( this.showDetailsModal === false){
this.selectedRowName = params.row.name
this.clickedRowId = params.row.id
this.clickedRow = params.row
}
this.showDetailsModal = true
}
}
}, params.row.name)
])
}
},
{
title: '用户',
key: 'userName',
align: 'center'
},
{
title: '生成时间',
key: 'createTime',
align: 'center'
}
],//表格表头